我的問題對於其他人來說可能是微不足道的,但對我而言,我無法使其工作。我有佈局xml如下。將ImageView設置在屏幕中央
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<LinearLayout android:id="@+id/tracker_container"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:orientation="vertical"
/>
<ImageView
android:id="@+id/mainImageView"
android:contentDescription="@string/display"
android:layout_gravity="center"
android:layout_width="400dp"
android:layout_height="300dp"
android:opacity="translucent"
/>
</LinearLayout>
我怎樣才能讓ImageView
是在整個屏幕的中心? 感謝
android:layout_centerInParent =「true」可以替換爲android:layout_centerHorizontal =「true」和android:layout_centerVertical =「true」 –