在我的活动中,我有4个元素的LinearLayout:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:id="@+id/linearLayout2">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imgButton1"
android:layout_weight=".25"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
android:background="@null" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imgButton2"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
android:layout_weight=".25"
android:background="@null" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imgButton3"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
android:layout_weight=".25"
android:background="@null" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imgButton4"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
android:layout_weight=".25"
android:background="@null" />
</LinearLayout>
这就是我想要的。当一个或多个元素不存在时会出现问题,我得到以下结果: