フルスクリーン アプリケーション (タイトル バーなし) とすべてのデバイスのアクションバーを使用するにはどうすればよいですか? 私が使うとき
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
アクションバーが削除されました。
this.requestWindowFeature(Window.FEATURE_ACTION_BAR | Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
アクションバー付きのフルスクリーンアプリケーションがありますが、出力は次のようになります
および myLayout.xml :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:padding="20dip">
<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
ちなみに、私は Sherlock を使用し、ActionItems (sherlock のサンプルの最初の項目) を使用しますが、タイトルバーはありません。