前提・実現したいこと
Realmを使ったシンプルなメモアプリを作ろうと考えております。
realmの使い方は分かるようになったのですが、保存したデータをListViewに表示したいと考えております。調べてもなかなか理解が出来ないので、ご教授頂ければ幸いです。
現在は、Listviewへ追加、削除は出来ます。
該当のソースコード
MainActivity
1 val et_name : EditText = findViewById(R.id.et_name) 2 val bt_add : Button = findViewById(R.id.bt_add) 3 val bt_delete : Button = findViewById(R.id.bt_delete) 4 val lv : ListView = findViewById(R.id.lv) 5 6 val adapter = ArrayAdapter<String>(this,android.R.layout.simple_expandable_list_item_1, 7 mutableListOf()) 8 lv.adapter = adapter 9 10 //Realmを使う時に必要 11 val realm = Realm.getDefaultInstance() 12 13 //bt_addを押すとet_nameに入力した内容をDBに保存とListViewに表示する処理を記載する 14 bt_add.setOnClickListener { 15 if ( et_name.text.toString().isEmpty()){ 16 AlertDialog.Builder(this) 17 .setTitle("未入力") 18 .setMessage("名前を入力して下さい") 19 .setPositiveButton("OK",null) 20 .show()//et_nameが未入力の場合、アラートダイアログで表示 21 }else{ 22 realm.beginTransaction()//Realmのはじまり 23 try { 24 val user = realm.createObject(user::class.java) 25 user.setName(et_name.text.toString())//DBに書き込み 26 et_name.text.clear()//DBに書き込みしたらEditTextの文字をクリアする 27 Toast.makeText(applicationContext,"登録しました",Toast.LENGTH_SHORT).show()//トーストで表示 28 realm.commitTransaction() 29 adapter.add(user.getName())//et_nameの内容をListViewに追加する 30 }catch (e:RealmException){} 31 } 32 } 33 34 //ListViewをタップするとアラートダイアログを表示して、削除するかしないか判断する 35 //合わせてDBに登録されているデータも一緒に削除する 36 lv.setOnItemClickListener { parent, view, position, id -> 37 AlertDialog.Builder(this) 38 .setTitle("削除しますか??") 39 //Yesを押下した時の処理 40 //タップされたところの名前を削除とDBの削除 41 .setPositiveButton("Yes",DialogInterface.OnClickListener { dialog, which -> 42 adapter.remove(adapter.getItem(id.toInt())) 43 adapter.notifyDataSetChanged() 44 //ここからDBの削除の処理を記載する 45 //現時点でタップされたとこの名前のDB削除方法は分からない 46 realm.beginTransaction() 47 val delete = adapter.getItem(id.toInt()) 48 realm.where(user::class.java) 49 et_name.text.clear() 50 //Toast.makeText(applicationContext,"削除しました",Toast.LENGTH_SHORT).show() 51 realm.commitTransaction() 52 }) 53 .setNegativeButton("No",DialogInterface.OnClickListener { dialog, which -> 54 Toast.makeText(applicationContext,"キャンセルしました",Toast.LENGTH_SHORT).show() 55 }) 56 .show() 57 } 58 //これは予備コード 59 //DB全削除用 60 bt_delete.setOnClickListener { 61 realm.beginTransaction() 62 realm.where(user::class.java).findAll().deleteAllFromRealm() 63 realm.commitTransaction() 64 } 65 } 66}
user
1open class user : RealmObject(){ 2 private var name : String = "" 3 4 fun setName(name:String){ 5 this.name = name 6 } 7 8 fun getName():String{ 9 return name 10 } 11 12}
activitymainXML
1 2<?xml version="1.0" encoding="utf-8"?> 3<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 4 xmlns:app="http://schemas.android.com/apk/res-auto" 5 xmlns:tools="http://schemas.android.com/tools" 6 android:layout_width="match_parent" 7 android:layout_height="match_parent" 8 tools:context=".MainActivity"> 9 10 <EditText 11 android:id="@+id/et_name" 12 android:layout_width="match_parent" 13 android:layout_height="wrap_content" 14 android:ems="10" 15 android:inputType="textPersonName" 16 android:hint="name" 17 app:layout_constraintStart_toStartOf="parent" 18 app:layout_constraintTop_toTopOf="parent" /> 19 20 <Button 21 android:id="@+id/bt_add" 22 android:layout_width="wrap_content" 23 android:layout_height="wrap_content" 24 android:text="add" 25 app:layout_constraintEnd_toEndOf="parent" 26 app:layout_constraintTop_toBottomOf="@+id/et_name" /> 27 28 <ListView 29 android:id="@+id/lv" 30 android:layout_width="409dp" 31 android:layout_height="636dp" 32 android:layout_marginStart="1dp" 33 android:layout_marginTop="1dp" 34 android:layout_marginEnd="1dp" 35 app:layout_constraintEnd_toEndOf="parent" 36 app:layout_constraintStart_toStartOf="parent" 37 app:layout_constraintTop_toBottomOf="@+id/bt_add" /> 38 39 <Button 40 android:id="@+id/bt_delete" 41 android:layout_width="wrap_content" 42 android:layout_height="wrap_content" 43 android:text="Button" 44 app:layout_constraintEnd_toStartOf="@+id/bt_add" 45 app:layout_constraintTop_toBottomOf="@+id/et_name" />
補足情報(FW/ツールのバージョンなど)
Android Studio Arctic Fox | 2020.3.1 Patch 1
回答1件
あなたの回答
tips
プレビュー