我尝试将两个图像放在布局的中心, 但是我的布局顶部和底部都有额外的空间。 图像是png文件。
我的XML的重要部分如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/backDark2"
android:orientation="horizontal"
>
<ImageView
android:id="@+id/imageDriverProfileFace"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:src="@drawable/driver"
/>
<ImageView
android:id="@+id/imageDriverProfileCar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:src="@drawable/car"
/>
</LinearLayout>
任何想法请如何删除提到的额外空间? 谢谢!
答案 0 :(得分:1)
将android:adjustViewBounds="true"
param设置为您的imageview的