Android 4.0和自定义标题栏不起作用

时间:2012-04-02 06:21:25

标签: android android-titlebar

我有一个Android 2.3.3的应用程序,我正在设置一些这样的自定义标题:

final boolean customTitleSupported = requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);

if ( customTitleSupported ) 
  {
     getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.titlebar);
  }

myTitleText = (TextView) findViewById(R.id.myTitle);

if ( myTitleText != null ) 
  {
     myTitleText.setText("MDPI - Main");
  }

所有这些行都在onCreate()中写入。

在android 2.3.3中,一切正常。我现在正在尝试为Android 4.0制作相同的应用程序,但我在设置自定义标题栏时遇到问题。我得到了这个错误:

E/AndroidRuntime(4225): Caused by: android.util.AndroidRuntimeException: You cannot combine custom titles with other title features

我需要帮助来解决此错误。

我的课程定义如下:

MDPIActivity extends Activity implements OnGestureListener, AnimationListener

谢谢。

1 个答案:

答案 0 :(得分:7)

我通过设置另一个主题来解决这个问题,例如:

机器人:主题= “@机器人:风格/ Theme.Black”

AndroidManifest文件中的