2022-07-01から1ヶ月間の記事一覧
2022 Jul. 20. build.gradle(Module: app) plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' } android { compileSdk 31 defaultConfig { applicationId "net.sytes.rokkosan.randomplayer" minSdk 24 targetSdk 31 versionCode 1…
2022 Jul. 19. 対応その1 出典 kotlinで値がprimitive wrapperのためにlateinitできない場合 - Be an Idealistic Realist Kotlin : 'notNull delegate' vs 'lateinit' - Qiita var myInt: Int by Delegates.notNull() 対応その2 出典 'lateinit' modifier is…
2022 Jul. 19. 2022 Jul. 18. // ファイル・ピッカーによるディレクトリ取得 fun myMain() { // ボタンがタップされたら、ファイルピッカーによりディレクトリを取得 buttonSelectDir.setOnClickListener { openFilePicker() } } private fun openFilePicker…
2022 Jul. 18. メディアファイル抽出 val selectionClause = MediaStore.Files.FileColumns.MEDIA_TYPE + " = " + MediaStore.Files.FileColumns.MEDIA_TYPE_AUDIO + " OR " + MediaStore.Files.FileColumns.MEDIA_TYPE + " = " + MediaStore.Files.FileColu…
2022 Jul. 18. Intent.ACTION_OPEN_DOCUMENT_TREEでファイル・ピッカーから取得したディレクトリ文字列 プライマリ・ストレージ content://com.android.externalstorage.documents/tree/primary%3Amydir1%2Fmydir2%2Fmydir3 %3A %2F はパス区切り文字 SDカー…
2022 Jul. 17. 現象 ubuntuではRealtek RTL8168ネットワークチップに対し、r8169ドライバがインストールされてしまう。 対策 出典 Ubuntu Debian Linux Mint r8169 r8168 Network Driver Problem and Solution - rtt - IT Resource ドライバをr8168に入れ替…
2022 Jul. 17. 出典 Ubuntu18.04でスリープ後ネットワークが繋がらなくなった話 - Qiita ネットワークチップの確認 $ lspci Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 11) $ s…