Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Created March 24, 2022 05:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeforfun-jp/4c71fa98cbb680168c2c24a5cde8dc89 to your computer and use it in GitHub Desktop.
Save codeforfun-jp/4c71fa98cbb680168c2c24a5cde8dc89 to your computer and use it in GitHub Desktop.
【Kotlin】ListView with searchview 2
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val data = listOf(
"あだち", "いのうえ", "うえき", "うえだ",
"うえと", "うちだ", "うちの", "うつみ", "うの", "えとう", "おおた"
)
// ListViewにデータをセットする
val list = findViewById<ListView>(R.id.list)
list.adapter = ArrayAdapter(
this,
android.R.layout.simple_list_item_1,
data
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment