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 に答える