2021-01-01から1年間の記事一覧

【Android】java.lang.IllegalStateException: Room cannot verify the data integrity. 解消方法

問題 実行したときのlogcatで以下のログが出力される。 java.lang.IllegalStateException: Room cannot verify the data integrity. Looks like you've changed schema but forgot to update the version number. You can simply fix this by increasing the…

【Android】ViewModelの使い方

ViewModel ViewModelの特徴 ViewModelでやってはいけないこと ViewModel ViewModelの特徴 UI コントローラの肥大化を防ぐ アクティビティやフラグメント(総称してUI コントローラ)は、UI表示、ユーザ操作の受取、権限などのOSとのやり取りを行う責務がありま…