私のプログラムでは、カスタムタイトルを非表示にする必要がある場合がありますが、チルトの背景画像を非表示にできませんでした。ボタンとテキストビューをうまく非表示にできます。私のコード(xml)は次のとおりです。
タイトル xml : viewimage_slide_title.xml
< RelativeLayout
android:background="@drawable/iphone_header_bg"
android:orientation="horizontal"
android:id="@+id/viewimage_slide_title">
<Button
android:id="@+id/third_image_button_back"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/third_title_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RelativeLayout>
style.xml:
<color name="transparent">#00000000</color>
<style name="CustomWindowTitleBackground">
<item name="android:background">@drawable/iphone_header_bg</item>
</style>
<style
name="title" parent="android:Theme.Light">
<item name="android:windowTitleSize">50dp</item><item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
</style>
manifes.xml 。アクティビティ。私は次のように追加します:
<activity
android:name="com.android.camera.third.MianActivity"
android:configChanges="orientation|keyboardHidden"
android:label="@string/view_label"
android:theme="@style/title"
android:screenOrientation="behind" >
私のJava(MianActivity)コードでは:
titlebar = (RelativeLayout) findViewById(R.id.viewimage_slide_title);
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.viewimage_slide);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,
R.layout.viewimage_slide_title);
私の他のJavaコードでは:私はそうします
MianActivity.titlebar.setVisibility(View.GONE);