我有一個屏幕上的四個按鈕,我想在屏幕中央排列,九個按鈕在下一個屏幕中應該排列在屏幕中央等等在..我使用線性佈局,但IAM沒有得到所需的佈局。 下面是我的XML ..排列布局中的按鈕
<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.go123.MainActivity" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:paddingStart="10dip"
android:paddingEnd="10dip"
android:paddingLeft="10dip"
android:paddingRight="10dip">
<Button
android:id="@+id/button0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="Go 1,2,3.." />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="Go 1,2,3.." />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/button0"
android:text="Go 1,2,3.." />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/button1"
android:text="Go 1,2,3.." />
我也試圖使用Android Flexbox的佈局,但沒有成功..
你需要垂直放置按鈕嗎? – jagapathi
添加您正在查找的結果的快照。紙上簡單的草圖會很好。 – Ritesh
@Ritesh添加了期望的結果的snopshot .. – amit