You cannot combine custom titles with other title features

使用下面代码自定义标题栏:
        requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);//自定义标题栏
        setContentView(R.layout.main_tijian);

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


在2.3的Android系统上可以运行,在4.0的系统上报如标题所示的错,原因是4.0默认了添一个加标题栏,解决办法:

程序初始为:

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme">

将        android:theme="@style/AppTheme"

修改为        android:theme="@android:style/Theme.Dialog"

另一种方法为通过actionBar来设置(R.layout.title_bar为自己建立的布局xml文件(也可是自定义的View对象)

ActionBar actionBar = this.getActionBar();
actionBar.setCustomView(R.layout.title_bar);
actionBar.setDisplayShowCustomEnabled(true);
actionBar.setDisplayShowHomeEnabled(false);
actionBar.show();

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值