Android布局:结合LinearLayout和TableLaout

时间:2011-08-08 14:45:39

标签: android android-linearlayout tablelayout

我想有一个看起来像这样的布局(在横向模式下): - 在4个等间距按钮上 - 在中间:一个EditText块,右边是一个ImageButton - 在底部是一个文本视图。

以下是我用来实现此布局的xml文件:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:padding="20dip"
>


<TableLayout 
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:stretchColumns="*">

<TableRow>

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/b1"
android:drawablePadding="5sp"
android:text="B1"></Button>

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/b2"
android:drawablePadding="5sp"
android:text="B2"></Button>

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/b3"
android:drawablePadding="7sp"
android:text="B3"></Button>

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/b4"
android:drawablePadding="7sp"
android:text="B4"></Button>

</TableRow>   
</TableLayout> 

<TableLayout 
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:stretchColumns="*">

<TableRow>

<EditText 
android:id="@+id/entry"
android:layout_width="200dp"
android:layout_height="50dp"
android:layout_below="@id/e1"
android:layout_marginLeft="20dp" 
android:layout_marginTop="10dp"  
/>
<ImageButton
android:id="@+id/search2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/i1" 
android:layout_marginTop="10dp" 
/>  

</TableRow>

<TextView
android:id="@+id/t2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="T2"/>

</TableLayout> 

</LinearLayout> 

然而,我说的是我想要的方式上面的4个按钮,其余的(第二行和第三行)不在页面上(无法看到)。我不知道他们去了哪里。 我感谢任何帮助。 谢谢,

TJ

1 个答案:

答案 0 :(得分:2)

添加

android:orientation="vertical" 

在父LinearLayout中。