2

我会使用图标和文本自定义应用程序的每个活动的标题栏。我尝试了一些方法,但它们不起作用。有谁能够帮我?

这是我的代码示例:

public class TitleBar extends Activity {
  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    final boolean customTitleSupported = requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
    setContentView(R.layout.activity_main);

    if ( customTitleSupported ) {
      getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.titlebar);
    }
    // user can also set color using “Color” and then “Color value constant”
    // myTitleText.setBackgroundColor(Color.GREEN);
  }
}

在 xml 中:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >

  <TextView
    android:id="@+id/myTitleText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="appuntiiiiiii" />

</LinearLayout>`
4

1 回答 1

1

我知道这可能对您的需求有点过分,但如果您真的想要一些很酷的东西,您应该尝试实现 ActionBar。它可以从 API11 官方获得,但您可以实现ActionBarSherlock,它的外观和工作方式几乎相同。我喜欢这个!

至于您的代码,没有 ImageView 那么您怎么可能显示图像。在 TextView 之前需要一个 imageView

于 2012-12-19T15:45:40.690 回答