我尝试为我的窗口标题栏添加不同的布局,但是在同一页面中我已经有了一个操作栏,当我运行我的应用程序时,我收到了这个错误:
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>
当我尝试创建操作栏时会抛出错误。 有人能告诉我如何解决这个问题?
更新 的manifest.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>
答案 0 :(得分:1)
如果您设置Window.FEATURE_CUSTOM_TITLE
一次,则无法再次调用setFeatureInt
。对它的调用将归结为Window实现中的requestFeature()调用,该方法测试FEATURE_CUSTOM_TITLE并在设置时抛出异常。