3

カスタマイズされたホーム アイコンを作成しています。カスタマイズのコードは次のとおりです。

View customView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
customView.findViewById(R.id.action_home).setOnClickListener(
    new OnClickListener() {
        @Override
        public void onClick(View v) {
            toggle();
        }
    });

actionBar.setCustomView(customView, new ActionBar.LayoutParams(
            LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
actionBar.setDisplayShowCustomEnabled(true);

これはaction_bar_display_options_custom.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
    android:layout_height="match_parent"
android:orientation="horizontal" >

<ImageView
    android:id="@+id/action_home"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/btn_home" />

<TextView
    android:id="@+id/action_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" /> </LinearLayout>

これがスクリーンショットです。

これは家のアイコンです (そのスペースは画像ビューの一部ではありません)。

では、ビューの前のスペースを削除するにはどうすればよいですか?

4

2 に答える 2

3

コードに次の行を追加して、この問題を解決しました

  getSupportActionBar().setDisplayShowHomeEnabled(false);
  getSupportActionBar().setCustomView(view); // set custom view here
  getSupportActionBar().setDisplayShowTitleEnabled(false);
  getSupportActionBar().setDisplayOptions(0, ActionBar.DISPLAY_SHOW_CUSTOM);
  getSupportActionBar().setDisplayShowCustomEnabled(true);

これがお役に立てば幸いです。

于 2013-01-29T12:56:36.237 に答える
0

親レイアウトで設定したパディングまたはマージンを削除すると、問題が解決します。お気軽に質問してください。問題が解決するかどうかもお知らせください。

于 2013-01-24T05:00:16.727 に答える