自定义ActionBar部分可见

时间:2013-02-28 11:46:15

标签: android actionbarsherlock

我正在使用ABS,这是我的自定义视图

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#000000"
android:orientation="vertical" >

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="1dp"
    android:background="#F0F0F0"
    android:paddingBottom="10dp" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="35dp"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="5dp"
        android:src="@drawable/list" />

    <ImageView
        android:id="@+id/imageView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_marginBottom="35dp"
        android:layout_marginRight="5dp"
        android:layout_marginTop="5dp"
        android:src="@drawable/create_dcyde" />

</RelativeLayout>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#000000" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="1dp"
        android:layout_weight="1"
        android:background="#F0F0F0"
        android:gravity="center_horizontal"
        android:text="TextView"
        android:textColor="#000000" />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:background="#F0F0F0"
        android:gravity="center_horizontal"
        android:text="TextView"
        android:textColor="#000000" />

    <TextView
        android:id="@+id/textView3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="1dp"
        android:layout_weight="1"
        android:background="#F0F0F0"
        android:gravity="center_horizontal"
        android:text="TextView"
        android:textColor="#000000" />

</LinearLayout>

这是我的onCreate

View customNav = LayoutInflater.from(this).inflate(R.layout.custom_view, null); 
getSupportActionBar().setCustomView(customNav);
getSupportActionBar().setDisplayShowCustomEnabled(true);
getSupportActionBar().setDisplayHomeAsUpEnabled(false);
getSupportActionBar().setDisplayShowHomeEnabled(false);

如果我将RelativeLayout的底部填充减少到10dp,我可以部分地看到TextViews。但是我希望至少20dp底部填充到相对布局看起来不错。但在20dp TxtView消失了。我超过ActionBar的任何高度限制吗?

Screenshot

0 个答案:

没有答案