1. ホーム
  2. android

[解決済み] 「KotlinとAndroidで「パラメータTを推測するのに十分な情報がありません。

2022-07-15 23:32:38

質問

Kotlinを使用したAndroidアプリで、以下のListViewを再現しようとしています。 https://github.com/bidrohi/KotlinListView .

残念ながら、自分では解決できないエラーが発生しました。 以下は私のコードです。

MainActivity.kt:

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_main)

    val listView = findViewById(R.id.list) as ListView
    listView.adapter = ListExampleAdapter(this)
}

private class ListExampleAdapter(context: Context) : BaseAdapter() {
    internal var sList = arrayOf("Eins", "Zwei", "Drei")
    private  val mInflator: LayoutInflater

    init {
        this.mInflator = LayoutInflater.from(context)
    }

    override fun getCount(): Int {
        return sList.size
    }

    override fun getItem(position: Int): Any {
        return sList[position]
    }

    override fun getItemId(position: Int): Long {
        return position.toLong()
    }

    override fun getView(position: Int, convertView: View?, parent: ViewGroup): View? {
        val view: View?
        val vh: ListRowHolder

        if(convertView == null) {
            view = this.mInflator.inflate(R.layout.list_row, parent, false)
            vh = ListRowHolder(view)
            view.tag = vh
        } else {
            view = convertView
            vh = view.tag as ListRowHolder
        }

        vh.label.text = sList[position]
        return view
    }
}

private class ListRowHolder(row: View?) {
    public val label: TextView

    init {
        this.label = row?.findViewById(R.id.label) as TextView
    }
}
}

レイアウトはこの通りです。 https://github.com/bidrohi/KotlinListView/tree/master/app/src/main/res/layout

私が受け取っている完全なエラーメッセージはこれです。 Error:(92, 31) Type inference failed: fun findViewById(p0: Int)のパラメータTを推論するための十分な情報がありません。T! 明示的に指定してください。

何かとお世話になりますが、よろしくお願いします。

どのように解決するのですか?

API level 26 (またはそれ以上) を使用している必要があります。このバージョンでは View.findViewById() - はこちら https://developer.android.com/about/versions/oreo/android-8.0-changes#fvbi-signature

というわけで、あなたの場合 findViewById の結果があいまいな場合は、型を指定する必要があります。

1/変更

val listView = findViewById(R.id.list) as ListView

val listView = findViewById<ListView>(R.id.list)

2/ 変更

this.label = row?.findViewById(R.id.label) as TextView

this.label = row?.findViewById<TextView>(R.id.label) as TextView

2/では、キャストが必要なのは row がnullableだからです。もし label も nullable であった場合、あるいは row をnullableでなくすれば必要ないでしょう。