1,888 views
この記事は最終更新から 2627日 が経過しています。
1. やりたいこと
前回 (4) BMI計算アプリを作る。 では、Android Studioを使って初めてアプリを作った。
BMI値を計算するだけのシンプルな「入力 → 計算 → 出力」の練習用アプリ作りだ。

1点気になったのが、画面の上部に表示されている「MyBMI」なるアプリの名前、これいらないかも。
ということで…
今回はこれを消す方法を調べた。
2. やってみる
manufestsを変更すればよい。
具体的には android:theme の属性値を変更する。
変更前
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
変更後
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
できた!

こういうものは「なぜ?」と考えなくてよい。
作った人がそう決めたのだから、利用者はそれを受け入れるしかないのだ。
アクセス数(直近7日): ※試験運用中、BOT除外簡易実装済2025-12-09: 0回 2025-12-08: 1回 2025-12-07: 4回 2025-12-06: 3回 2025-12-05: 0回 2025-12-04: 0回 2025-12-03: 0回