2011-08-12 10 views
0

私のandriodアプリケーションには次のレイアウトがあります。TableLayoutで空のTableRowを作成する方法

<?xml version="1.0" encoding="utf-8"?> 
<TableLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:background="@drawable/ULC Background" 
android:stretchColumns="1"> 
    <!--Below I try to create an 'empty' table to push down the buttons 200 pixels, but it doesn't work, it doesn't affect the layout at all--> 
    <TableRow android:id="@+id/tableRow3" android:layout_width="fill_parent" android:layout_height="200dip"></TableRow> 
    <TableRow android:layout_height="wrap_content" android:id="@+id/tableRow1" android:layout_width="wrap_content"> 
     <Button android:text="@string/startButtonText" android:layout_width="wrap_content" android:id="@+id/button1" android:layout_height="wrap_content"></Button> 
    </TableRow> 
    <TableRow android:layout_height="wrap_content" android:id="@+id/tableRow2" android:layout_width="wrap_content"> 
     <Button android:text="@string/exitButtonText" android:layout_width="wrap_content" android:id="@+id/button2" android:layout_height="wrap_content"></Button> 
    </TableRow> 
</TableLayout> 

ボタンが本当に奇妙に見える、私はそれらを200ピクセル押し下げて、どうすればいいですか?

「空の」TableRowを作成しようとしましたが、うまくいきませんでした。

答えて

5

テーブル行にはほとんどのビューと同様にpaddingTopがあり、それを使用してください。

+1

ああ愚かな私!パディング - ofcourse! –

関連する問題