我无法将两张图片放在布局的中心
I can't place two images on the center of layout
我尝试将两张图片放在布局的中心,
但是我在布局的顶部和底部有额外的 space 。
图片为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>
请问如何删除提到的额外内容 space?
谢谢!
将 android:adjustViewBounds="true"
参数设置为图像视图的
我尝试将两张图片放在布局的中心, 但是我在布局的顶部和底部有额外的 space 。 图片为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>
请问如何删除提到的额外内容 space? 谢谢!
将 android:adjustViewBounds="true"
参数设置为图像视图的