繁体   English   中英

Android-移除viewpager中的多余空间

[英]Android - Remove extra space in viewpager

我的ViewPager内部有一个片段,但我希望它占用所有空间。 现在有一些空间(我将背景设置为淡黄色),我怀疑这可能是viewpager添加的默认填充,但是我不确定。

我试图将ViewPager上的padding设置为-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>

从根目录RelativeLayout (合并标记后的那个)中删除padding

  <RelativeLayout
        android:id="@+id/appointment_gallery_toolbar"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:layout_alignParentBottom="true"
        android:background="#22000000"
        >

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM