如何删除自定义视图前的空间?

时间:2013-01-24 04:53:08

标签: android android-actionbar padding

我正在创建一个自定义主页图标。自定义的代码如下,

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>

这是截图,

  

这是主页的图标(该空间不是图像视图的一部分),

  

那么,如何删除视图前方的空间?

2 个答案:

答案 0 :(得分:3)

我通过在代码中添加以下行来解决了这个问题

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

希望这会对你有所帮助。

答案 1 :(得分:0)

删除您在父布局中设置的填充或边距,这将解决问题。请随意提出疑问,如果能解决您的问题,也请告诉我。