画面の下部にあるこの空白をどうやって削除できますか?私もandroid:adjustviewbounds
とandroid:scaletype
を試しました。しかし、まだ画面の下部にある空白を削除することに失敗しました。私のレイアウトを最適化して、その醜い空白を底から取り除くことができるように助けてください。画面の下から空白を削除します。Android
ここに私のレイアウト画面のスクリーンショットがあります。ここで
レイアウトの私のXMLコードです。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_height="wrap_content"
android:layout_width="match_parent"
tools:context="com.example.zohai.v360.Fragments.Home">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="190dp"
android:layout_marginTop="-15dp">
<ImageView
android:id="@+id/intro"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="fitXY"
android:adjustViewBounds="true"
android:background="@drawable/intro"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="190dp"
android:layout_marginTop="-15dp"
>
<ImageView
android:id="@+id/photog"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/photographers"
android:adjustViewBounds="true"
android:scaleType="fitXY"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="190dp"
android:layout_marginTop="-14dp">
<ImageView
android:id="@+id/model"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/model_bg"
android:adjustViewBounds="true"
android:scaleType="fitXY"
/>
</LinearLayout>
</LinearLayout>
</ScrollView>
</RelativeLayout>
3x190の後にまだ画面の高さが残っているので空白部分があり、なぜマイナス余白を使用していますか? –
私があなたの質問から理解できるのは、あなたがこれらの3つの写真を持っていて、画面全体を占有して空白を残したくないということです。これは、あなたの望むことですか? –
はい私はちょうどほしいです –