前提・実現したいこと
一緒にプレイするユーザーを追加・削除できるシンプルな画面を作成しています。
発生している問題・エラーメッセージ
ユーザーを追加していくことはできたのですが、追加した後にユーザーを削除していく処理がうまくいきません。 まずはリストをタップして削除する機能を実装したいのですが、どのように修正すればうまくいくか教えていただけないでしょうか。 adapter.remove(item)を記載したのですが、消せませんでした。
該当のソースコード
kotlin
1package com.example.mollkyscorebook_ver11 2 3import androidx.appcompat.app.AppCompatActivity 4import android.os.Bundle 5import android.view.View 6import android.widget.* 7 8class MainActivity : AppCompatActivity() { 9 val playerList = mutableListOf("") 10 override fun onCreate(savedInstanceState: Bundle?) { 11 super.onCreate(savedInstanceState) 12 setContentView(R.layout.activity_main) 13 14 findViewById<Button>(R.id.addPlayerBtn).setOnClickListener(addPlayer()) 15 findViewById<ListView>(R.id.playerList).onItemClickListener = ListIemClickListener() 16 } 17 18private inner class addPlayer : View.OnClickListener{ 19 override fun onClick(view: View) { 20 val displayPlayerList = findViewById<ListView>(R.id.playerList) 21 val newPlayerName=findViewById<EditText>(R.id.newPlayerName) 22 23 playerList.add(newPlayerName.text.toString()) 24 25 val adapter = ArrayAdapter(this@MainActivity, android.R.layout.simple_expandable_list_item_1,playerList) 26 displayPlayerList.adapter=adapter 27 newPlayerName.setText("") 28 } 29 } 30 31private inner class ListIemClickListener : AdapterView.OnItemClickListener{ 32 override fun onItemClick(parent:AdapterView<*>, view:View, position: Int, id:Long) { 33 val item = parent.getItemAtPosition(position) as String 34 val adapter = ArrayAdapter(this@MainActivity, android.R.layout.simple_expandable_list_item_1,playerList) 35 adapter.remove(item) 36 } 37} 38 39 40}
xml
1<?xml version="1.0" encoding="utf-8"?> 2<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 xmlns:tools="http://schemas.android.com/tools" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent" 7 tools:context=".MainActivity"> 8 9<LinearLayout 10 android:layout_width="wrap_content" 11 android:layout_height="wrap_content" 12 android:orientation="vertical"> 13 14 <LinearLayout 15 android:layout_width="wrap_content" 16 android:layout_height="wrap_content" 17 android:orientation="horizontal" 18 android:layout_gravity="center"> 19 20 <EditText 21 android:id="@+id/newPlayerName" 22 android:layout_width="250dp" 23 android:layout_height="wrap_content" 24 android:hint="名前を入力してください"/> 25 <Button 26 android:id="@+id/addPlayerBtn" 27 android:layout_width="wrap_content" 28 android:layout_height="match_parent" 29 android:text="追加"/> 30 31 </LinearLayout> 32 33 <ListView 34 android:id="@+id/playerList" 35 android:layout_width="wrap_content" 36 android:layout_height="wrap_content"/> 37 38 <Button 39 android:id="@+id/startGame" 40 android:layout_width="wrap_content" 41 android:layout_height="wrap_content" 42 android:text="スタート" 43 android:layout_gravity="center"/> 44 45</LinearLayout> 46 47</androidx.constraintlayout.widget.ConstraintLayout>
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
Android Studio 4.1 Windows10
回答1件
あなたの回答
tips
プレビュー