私は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
私が得ている完全なエラーメッセージは次のとおりです。エラー:(92、31)型推論に失敗しました。明示的に指定してください。
私は私が得ることができるどんな助けにも感謝します。
APIレベル26以上を使用している必要があります。このバージョンはView.findViewById()
のシグネチャを変更しました - こちらを参照してください https://developer.Android.com/preview/api-overview.html#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
row
はNULL可能であるため、2 /ではキャストのみが必要です。 label
もNULL可能にした場合、またはrow
をNULL不可にした場合は、必須ではありません。
Andoid OからfindViewById apiを変更
パブリックビューfindViewById(int id);
に
パブリックファイナルT findViewById(int id)
あなたがAPI 26をターゲットにしているのであれば、あなたは変更することができます
listViewとしてval listView = findViewById(R.id.list)
に
val listView = findViewById(R.id.list)
または
val listView:ListView = findViewById(R.id.list)
その働き
APIレベル25以下はこれを使用します
var et_user_name = findViewById(R.id.et_user_name) as EditText
APIレベル26以上でこれを使用
val et_user_name: EditText = findViewById(R.id.et_user_name)
ハッピーコーディング!
コードをこれに変更してください。主な変更が行われた場所はアスタリスクでマークされます。
package com.phenakit.tg.phenakit
import Android.content.Context
import Android.os.Bundle
import Android.support.design.widget.BottomNavigationView
import Android.support.v7.app.AppCompatActivity
import Android.view.LayoutInflater
import Android.view.View
import Android.view.ViewGroup
import Android.widget.BaseAdapter
import Android.widget.ListView
import Android.widget.TextView
public class MainActivity : AppCompatActivity() {
private var mTextMessage: TextView? = null
private val mOnNavigationItemSelectedListener = BottomNavigationView.OnNavigationItemSelectedListener { item ->
when (item.itemId) {
R.id.navigation_home -> {
mTextMessage!!.setText(R.string.title_home)
return@OnNavigationItemSelectedListener true
}
R.id.navigation_dashboard -> {
mTextMessage!!.setText(R.string.title_dashboard)
return@OnNavigationItemSelectedListener true
}
R.id.navigation_notifications -> {
setContentView(R.layout.activity_list_view)
return@OnNavigationItemSelectedListener true
}
}
false
}
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
mTextMessage = findViewById(R.id.message) as TextView?
val navigation = findViewById(R.id.navigation) as BottomNavigationView
navigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener)
**val listView = findViewById<ListView>(R.id.list)**
**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 var label: TextView
**init { this.label = row?.findViewById<TextView?>(R.id.label) as TextView }**
}
}
私はあなたにsynthetics
kotlin Android拡張機能を使うことを勧めます:
https://kotlinlang.org/docs/tutorials/Android-plugin.html
https://antonioleiva.com/kotlin-Android-extensions/
あなたの場合、コードは次のようになります。
init {
this.label = row.label
}
それと同じくらい簡単です;)