今回は recyclerView を使ったときの item 全体にボタンイベントを設置したい。 inflate するための view <?xml version=”1.0″ encoding=”utf-8″?> […]
参考URL コルーチン https://developer.android.com/kotlin/coroutines?hl=ja Room https://developer.android.com/jetpack/a […]
参考サイト様 https://material.io/components/menus/android#exposed-dropdown-menus なんか選択肢だすやつ使ったことなかったし必要だったので使 […]
めちゃくちゃ参考にさせていただいたサイト https://developer.android.com/reference/com/google/android/material/timepicker/MaterialTi […]
めちゃくちゃ参考にさせてもらったサイト https://github.com/material-components/material-components-android/blob/master/lib/java/co […]
簡単な Activity 内での使い方メモ 文字列を格納するファイルのパス res/values/strings.xml 文字列宣言 <string name=”someText”>SomeText</ […]
とりあえず二パターン 1.xml と Kotlin を使う方法 xml <EditText android:id=”@+id/editText” android:layout_width=”wrap_content […]
良い例 val editText = findViewById<EditText>(R.id.editText) val text = “asdhfasdflasdflkad” editText.setTex […]
https://developer.android.com/guide/components/activities/activity-lifecycle?hl=ja 公式のライフサイクルの画像をみてどういう順番で関数が呼 […]
https://developer.android.com/training/data-storage/sqlite?hl=ja なんか注意が書かれているので Room にする。公式で SQLite について調べてたらい […]