0
我有以下佈局:滾動型與Viewpager
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#dddddd">
<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView android:id="@+id/title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="title"
android:textSize="@dimen/checkout_title"
android:textColor="#858585" />
<ViewPager
android:id="@+id/pager_checkout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<CirclePageIndicator android:id="@+id/indicator_checkout"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
app:pageColor="#858585"
app:fillColor="#f19201" />
<TextView
android:id="@+id/name"
android:layout_below="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="name"
android:textSize="16sp" />
<EditText
android:id="@+id/editTextName"
android:layout_width="fill_parent"
android:layout_height="40dp"
android:paddingLeft="10dp"
android:paddingRight="10dp" />
</LinearLayout>
</ScrollView>
</RelativeLayout>
視圖分頁器使用片段作爲頁面(每個頁面包含一個圖像)繼承人的佈局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#ff0000" >
<ImageView
android:id="@+id/img"
android:layout_height="wrap_content"
android:scaleType="centerInside"
android:adjustViewBounds="true"
android:layout_width="fill_parent"
android:src="@drawable/img" />
</LinearLayout>
我的主要問題是,有視圖尋呼機和設備中的指示器之間的大空間,如nexus 4中的nexus 7 theres沒有空間,無論如何刪除該空間?