2

我尝试为我的窗口标题栏添加不同的布局,但在同一页面中我已经有一个操作栏,当我运行我的应用程序时,我收到此错误:

java.lang.RuntimeException:无法启动活动 ComponentInfo{com.example.stampp/com.example.stampp.UI.MainActivity}:android.util.AndroidRuntimeException:您无法将自定义标题与其他标题功能结合使用

这是我的代码:

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
    setContentView(R.layout.activity_main);

    getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.window_title);


    ActionBar actionBar = getActionBar();

    View fragmentContainer = findViewById(R.id.container);

    actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
    actionBar.setDisplayShowTitleEnabled(false);

    Tab alleTab = actionBar.newTab();
    alleListTabListener = new TabListener<AlleFragment>(this, R.id.container, AlleFragment.class);
    alleTab.setText("Alle").setContentDescription("Alle page").setTabListener(alleListTabListener);
    actionBar.addTab(alleTab);

    Tab favoriteTab = actionBar.newTab();
    favoriteListTabListener = new TabListener<FavoriteFragment>(this, R.id.container, FavoriteFragment.class);
    favoriteTab.setText("Favorite").setContentDescription("Favorite page").setTabListener(favoriteListTabListener);
    actionBar.addTab(favoriteTab);

    Tab umbegungTab = actionBar.newTab();
    umbegunfListTabListener = new TabListener<UmbegungFragment>(this, R.id.container, UmbegungFragment.class);
    umbegungTab.setText("Umbegung").setContentDescription("Umbegung page").setTabListener(umbegunfListTabListener);
    actionBar.addTab(umbegungTab);

}

这是我的 window_title.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:background="@color/menu_background">
<TextView
    android:id="@+id/windowTitleText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:textSize="25sp" 
    android:text="@string/shouts"/>
 </RelativeLayout>

当我尝试创建我的操作栏时引发错误。有人可以告诉我如何解决这个问题吗?

更新 清单.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.stampp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
    android:minSdkVersion="11"
    android:targetSdkVersion="17" />
<application
    android:allowBackup="true"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.stampp.UI.MainActivity"
        android:label="@string/shouts"
        android:uiOptions="splitActionBarWhenNarrow">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
<supports-screens android:anyDensity="true"
                android:largeScreens="true"
                android:normalScreens="true"
                android:smallScreens="true"
                android:xlargeScreens="true" />
</manifest>
4

1 回答 1

1

如果设置Window.FEATURE_CUSTOM_TITLE过一次,setFeatureInt就不能再调用了。对它的调用将归结为 Window 实现中的 requestFeature() 调用,该方法测试 FEATURE_CUSTOM_TITLE 并在设置时抛出异常。

于 2013-09-18T09:52:12.840 回答