2022-06-01から1ヶ月間の記事一覧

Jetpack DataStoreを消去する

公式に良いのが見つからなかったのでメモ Preferences DataStore // 消去 context.dataStore.edit { it.clear() } // 定義 val Context.dataStore by preferencesDataStore(name = "settings") Proto DataStore // 消去 context.datastore.updateData { it.t…

KotlinのCharをIntにする

KotlinのCharを10進数のIntにするにはdigitToInt() digitToInt - Kotlin Programming Language Kotlinバージョンは1.5以上 println('5'.digitToInt()) // 5 println('3'.digitToInt(radix = 8)) // 3 println('A'.digitToInt(radix = 16)) // 10 println('k'…

ComposeViewでのテキストのautoLink対応

Text()にTextViewのandroid:autoLinkに相当するものがなかったので、実装 TextView | Android Developers @Composable fun DefaultLinkifyText( modifier: Modifier = Modifier, text: String?, textAppearance: Int = android.R.style.TextAppearance_Mater…

ListAdapterのサンプル実装

abstract class ListAdapter : RecyclerView.Adapter developer.android.com サンプル実装 data class Tweet( val text: String, val id: Long, ) class TweetAdapter( private val onClick: (Tweet) -> Unit ) : ListAdapter<Tweet, TweetAdapter.ItemViewHolder>(DIFF_UTIL_ITEM_CALLBACK) { cl</tweet,>…