如何在屏幕上显示水平居中垂直对齐的图像视图。
到目前为止,我尝试过这样的事情:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView
android:layout_width="match_parent"
android:layout_gravity="center_horizontal"
android:background="#FFffff00"
android:scaleType="fitEnd"
android:src="@drawable/hand"
android:layout_height="0dip"
android:layout_weight="1"/>
<android.support.v7.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"/>
它在移动设备上运行良好,但在平板电脑上,图像水平对齐到屏幕右侧。