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

なぜNavigation Component を使ったSingle Activity Architectureをお勧めするのか

表題について上手く言語化してある記事を見つけたので紹介したい。 oozou.com Since the announcement of Jetpack in Google I/O 2018, Single Activity Architecture is also mentioned Android Developers Blog: Use Android Jetpack to Accelerate Your A…

AndroidのButtonでアルファベットテキストが全て大文字になる

qiita.com 大文字小文字を区別したい時の解決策は、レイアウトxmlでandroid:textAllCaps="false"と指定してあげることです。 ボタンテキストは大文字固定がデフォルトになっているようです。 // example <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="hoge" android:textAllCaps="false" /> リファレンス developer.android.com</button>