0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Android Studio: Bottom Navigation Views Activity を使う

Last updated at Posted at 2023-09-30

テンプレート Bottom Navigation Views Activity を使います。
image.png

このままでは、Build ができません。

build.gradle.kts を修正します。

33 -> 34

build.gradle.kts
(省略)
compileSdk = 34
(省略)
targetSdk = 34
(省略)

image.png

image.png

実機で実行した様子

APK ファイルを USB でアンドロイドタブレットに持っていって、インストールしました。

android03.png

改造

res -> values -> strings.xml を改造します。

app/src/main/res/values/strings.xml
<resources>
    <string name="app_name">example03</string>
    <string name="title_home">ホーム</string>
    <string name="title_dashboard">ダッシュボード</string>
    <string name="title_notifications">告知</string>
</resources>

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?