当你开始做一键事情时,要问问自己是不是三分钟的热度
分类: Android平台
2015-02-01 15:28:07
1. 对指定的and关键roid activity设置自定义主题风格,其中自定义主题风格是
在android 4.0以上版本中如果使用Theme.Holo或者Theme.Light等,程序会
一直报错误-you cannot combine custom title with other feature titles
2. 在对应的Activity中加入代码
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.activity_main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.title);
注意:Activity继承关系应该是继承Activity,而不是ActionBarActivity
3. 在styles.xml使用如下的自定义主题。
4. XML资源文件
android:layout_width="fill_parent"
android:layout_height="fill_parent">
android:id="@+id/Titletext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:textSize="21dp"
android:layout_marginTop="3dp"
android:textColor="#ffffffff"
android:textStyle="bold"
android:text="云笔记"
/>
5. 最后别忘记在androi的manifest配置文件中加上自定义的主题
android:theme="@style/AppTheme"
最终效果如下: