1

アプリケーションのカスタムタイトルバーを作成しようとしています。問題は、次の変更を行うと、起動時にクラッシュすることです。

    this.requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
    setContentView(R.layout.main);
    this.getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.titlebar);

問題は何でしょうか?フォーラムとネットを検索しましたが、答えが見つかりませんでした。ありがとう。

4

2 に答える 2

0

タイトルバーを設定した後、このCall setContentView(...)を試してください

this.requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);    
this.getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.titlebar);
setContentView(R.layout.main);
于 2012-08-13T18:31:24.253 に答える
0

これは私にとってはうまくいきます。私の考えでは、XML ファイルにエラーがあります

 /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

     requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);

    setContentView(R.layout.main);      

    getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, 
                              R.layout.window_main_title);
 }

XML layout.window_main_title :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#323331">

    <ImageView
        android:id="@+id/header"
        android:src="@drawable/ic_launcher_32"
        android:paddingLeft="5dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"/>

    <TextView
                android:id="@+id/textHeader"
                android:textSize="15dp"  
                android:textColor="#FEFEFE"
                android:text="@string/app_name"
                android:paddingLeft="5dp"
                android:layout_gravity="center_vertical"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"></TextView> 


</LinearLayout>
于 2012-08-13T19:30:10.110 に答える