0
我想在第一行有3個圖像按鈕,在第二行有3個圖像按鈕。 我試圖用相對和線性佈局的組合來實現它,但是,不知何故,我結束了每行中的1個圖像按鈕,並且共有6行。無法對齊相對和線性佈局中的圖像按鈕
有人可以幫我對齊第一行的3個圖像框和第二行的3個框。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="app.com.date.design.drawer.AddImagesFragment">
<!-- TODO: Update blank fragment layout -->
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/layout1"
android:baselineAligned="false"
android:orientation="vertical">
<ImageButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:srcCompat="@drawable/common_full_open_on_phone"
android:id="@+id/image1" />
<ImageButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:srcCompat="@drawable/common_full_open_on_phone"
android:id="@+id/image2" />
<ImageButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:srcCompat="@drawable/common_full_open_on_phone"
android:id="@+id/image3" />
<ImageButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:srcCompat="@drawable/common_full_open_on_phone"
android:id="@+id/image4" />
<ImageButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:srcCompat="@drawable/common_full_open_on_phone"
android:id="@+id/image5" />
<ImageButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:srcCompat="@drawable/common_full_open_on_phone"
android:id="@+id/image6"
android:layout_weight="0.05" />
</LinearLayout>
</RelativeLayout>
</FrameLayout>
謝謝,它的工作 – user7327850
歡迎:) :) :) :) –