论坛首页 移动开发技术论坛

android4.0自定义标题报错 -----断点记录

浏览 1580 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2013-01-30  

 1:AndraoidMainfest中 activity的样式设置 android:theme="@android:style/Theme.NoTitleBar"

  2:代码部分

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);  //会与 android:theme="@android:style/Theme.NoTitleBar"冲突,只能存在一个

setContentView(R.layout.activity_dataentering);

getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,

R.layout.top_title);

 

解决办法:

1:androidMainfest中activity的样式设置为 android:theme="@style/android:Theme.Light"

2:代码

            requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);  

setContentView(R.layout.activity_dataentering);

getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,

R.layout.top_title);

论坛首页 移动开发技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics