我正在使用 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 的任何高度限制?