1,493 views
この記事は最終更新から 2265日 が経過しています。
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">
できた!
こういうものは「なぜ?」と考えなくてよい。
作った人がそう決めたのだから、利用者はそれを受け入れるしかないのだ。