私のレイアウトはこのようなもので、結果の画像は以下です
<RelativeLayout
android:id="@+id/gamelobby"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/gamelobby_bg" >
<TextView
android:id="@+id/banner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/banner"
android:gravity="center"
android:typeface="serif"
android:textColor="#e3ab15"
android:text="My Banner"
android:textSize="22sp"/>
//my other layout
</RelativeLayout>
</ScrollView>
ここでは、背景は画像ではなく、xml コードが次のようなシェイプ ドローアブルです。
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<gradient
android:angle="45"
android:startColor="#523c00"
android:endColor="#100c00"
android:type="linear" />
</shape>
</item>
</selector>
ご覧のとおり、トップ画面とバナーの間、および右側のバナーと画面の間に隙間があります。それらを削除したいと思います。たくさん検索し、多くのアプローチを試しましたが、うまくいきませんでした。何か助けて!!!! ありがとう