我试图重新定位我的Android应用布局,我有2个EditText和一个Button。
我想将它们放在彼此之下,它现在是一边到另一边。 这是我的代码:
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="20dp"
android:background="@drawable/borderlayout" >
<EditText
android:id="@+id/titleText1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:hint="Title" />
<EditText
android:id="@+id/descriptionText1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/titleText1"
android:layout_weight="1"
android:hint="Description" />
<Button
android:id="@+id/inputbutton1"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:layout_below="@+id/descriptionText1"
android:layout_weight="1"
android:background="@drawable/custom_button" />
</TableRow>
这就是它在我运行时的样子(由于低Rep而无法发布图像) http://prntscr.com/3qyjpv
答案 0 :(得分:0)
使用LinearLayout
将其更改为android:orientation="vertical"
。
答案 1 :(得分:0)
您必须使用LinearLayout
orientation=vertical
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<EditText
android:id="@+id/titleText1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:hint="Title" />
<EditText
android:id="@+id/descriptionText1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/titleText1"
android:layout_weight="1"
android:hint="Description" />
<Button
android:id="@+id/inputbutton1"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:layout_below="@+id/descriptionText1"
android:layout_weight="1"
android:background="@drawable/custom_button" />
答案 2 :(得分:0)
就像你不应该在HTML中使用表格进行格式化一样,所以你不应该使用TableLayout格式化Android中的GUI。保留使用TableLayout格式化数据表。
如果需要,您可以使用LinearLayout,但我更喜欢使用“强制”小部件相对于彼此的位置。