要将ImageView置于LinearLayout中心,可以使用以下方法:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/your_image" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@drawable/your_image" />
</LinearLayout>
以上两种方法都可以将ImageView置于LinearLayout的中心位置。
领取专属 10元无门槛券
手把手带您无忧上云