タイトルバーを非表示にする
アプリ全体で非表示にする場合
AndroidManifest.xml
で設定する。
applicationタグを
<application android:icon="@drawable/icon" android:theme="@android:style/Theme.NoTitleBar">
という感じにthemeを設定する
各アクティビティごとにやる場合
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.main); }
とする。
requestWindowFeatureメソッドは、
setContentViewより前に書く必要がある。