我有一个调用不同活动的TabWidget
程序。问题是当我调用已经有自己的自定义标题栏的类并且给我错误java.lang.RuntimeException
时崩溃了:
Unable to start activity ComponentInfo{com.cellphone/com.cellphone.Settings}: android.util.AndroidRuntimeException: You cannot combine custom titles with other title features
你如何解决这个问题?我想要一个Android版的iPhone菜单栏(这就是为什么我使用的是TabWidget
),每个页面上都有自己的自定义标题栏。
编辑:在我的网页上我使用的是自定义标题
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.imtrackinglayout);
this.getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,
R.layout.custom_title_3);
我的程序在requestWindowFeature行崩溃并出现上述错误。
答案 0 :(得分:1)
尝试从theme.xml删除项目名称=“android:windowNoTitle”> true。 这应该可以解决你的问题。