我的ViewPager中有一个片段,但是我想让它占用所有空间。现在有一些空间(我将背景设置为黄色),我怀疑它可能是viewpager添加的默认填充,但我不确定。
我尝试将ViewPager上的填充设置为-10dp,但它似乎只能在左/右,而不是顶部/底部工作,并且在某些设备上根本不起作用。
我的主要布局
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<RelativeLayout
android:id="@+id/appointment_gallery_toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_alignParentBottom="true"
android:background="#22000000"
android:padding="5dp"
>
<TextView
style="@style/TextViewDark"
android:id="@+id/appointment_gallery_imagecount"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
/>
<ImageView
android:id="@+id/appointment_gallery_zoomout"
android:background="@drawable/zoom_out"
android:contentDescription="@string/appointment_gallery_zoomout"
android:layout_toLeftOf="@+id/appointment_gallery_delete"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginLeft="10dp"
/>
<ImageView
android:id="@+id/appointment_gallery_add"
android:background="@drawable/camera_add_hl"
android:contentDescription="@string/appointment_gallery_add"
android:layout_alignParentRight="true"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginLeft="10dp"
/>
<ImageView
android:id="@+id/appointment_gallery_add_existing"
android:background="@drawable/gallery_add_hl"
android:contentDescription="@string/appointment_gallery_add_existing"
android:layout_toLeftOf="@+id/appointment_gallery_add"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginLeft="10dp"
/>
<ImageView
android:id="@+id/appointment_gallery_comment"
android:background="@drawable/comment_add_hl"
android:contentDescription="@string/appointment_gallery_comment"
android:layout_toLeftOf="@+id/appointment_gallery_add_existing"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginLeft="10dp"
/>
<ImageView
android:id="@+id/appointment_gallery_delete"
android:background="@drawable/remove_hl"
android:contentDescription="@string/appointment_gallery_delete"
android:layout_toLeftOf="@+id/appointment_gallery_comment"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginLeft="10dp"
/>
</RelativeLayout>
<FrameLayout
android:id="@+id/appointment_gallery_comment_layout"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_above="@id/appointment_gallery_toolbar"
>
<TextView
style="@style/TextView"
android:id="@+id/appointment_gallery_comment_display"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center_horizontal"
android:textColor="@color/colorPrimaryText"
android:ellipsize="end"
android:text=""
/>
</FrameLayout>
<android.support.v4.view.ViewPager
android:id="@+id/appointment_gallery_imageholder"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/app_bar"
android:layout_above="@id/appointment_gallery_comment_layout"
android:background="@color/colorAccent"
>
</android.support.v4.view.ViewPager>
</merge>
我的片段布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/background"
android:layout_height="match_parent"
android:layout_width="match_parent"
>
<ImageView
android:id="@+id/iv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitCenter"
/>
</RelativeLayout>
答案 0 :(得分:1)
从根padding
(合并代码后面的那个)中删除RelativeLayout
值
<RelativeLayout
android:id="@+id/appointment_gallery_toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_alignParentBottom="true"
android:background="#22000000"
>