如何在代码中从底部和顶部减少图片的高度?我有两张坦克的照片,一张是透明的,一张是绿色的,它们应该在彼此的顶部,并且只显示两张照片的一部分,所以看起来坦克是半满的。下面是我的xml。我正在使用fuel_button_green 和fuel_button_empty。
<RelativeLayout
android:id="@+id/over_fuel_indication"
android:layout_width="140dp"
android:layout_height="270dp"
android:layout_marginLeft="150dp"
android:layout_marginTop="130dp"
android:weightSum="100"
android:orientation="vertical">
<ImageButton
android:id="@+id/fuel_button_green"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/tank_green_small"
android:background="#000000" />
<ImageButton
android:id="@+id/fuel_button_empty"
android:background="#000000"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/tank_empty_small"/>
<ImageButton
android:id="@+id/meter_img_butt"
android:contentDescription="@string/meter_img_butt"
android:layout_width="72dp"
android:layout_height="8dp"
android:layout_marginLeft="15dp"
android:background="#000000"
android:src="@drawable/meter_small_nodot" />
<ImageButton
android:id="@+id/meter_dot_img_butt"
android:contentDescription="@string/meter_img_butt"
android:layout_width="16dp"
android:layout_height="16dp"
android:background="#000000"
android:src="@drawable/meter_small_dot" />
<ImageButton
android:id="@+id/bar_img_butt"
android:layout_width="11dp"
android:layout_height="fill_parent"
android:layout_marginLeft="121dp"
android:contentDescription="@string/bar_img_butt"
android:background="#000000"
android:src="@drawable/bar_small" />
</RelativeLayout>