4

私はこの出力を持っています

http://www.cubixshade.com/images/align_row.jpg

日付フィールドである最初のフィールドを垂直方向の中央に揃えたいですか? また、他のフィールドにも左または右からスペースを追加するには、何を使用すればよいですか?

4

2 に答える 2

13

プロパティを TableRow に設定android:gravity="center_vertical"して、その子を垂直方向の中央に揃えることができます。

また、android:layout_marginLeftプロパティまたはプロパティを使用して左右からマージンを配置することもできます。同様に、またはandroid:layout_marginRiightを使用して上下にマージンを配置できます。android:layout_marginTopandroid:layout_marginBottom

列を伸ばしたい場合は、android:layout_weightプロパティを使用して列の重みを定義できます。

参考までに、2列の例を以下に示します

<?xml version="1.0" encoding="utf-8"?>
<TableLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/TableLayout01"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:stretchColumns="1" >

    <TableRow
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical" >

    <TextView
        android:id="@+id/TextView01"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Male"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <EditText
        android:id="@+id/etNoOfMale"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1" 
        android:inputType="number"/>
    </TableRow>

    <TableRow
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical" >

    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Female"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <EditText
        android:id="@+id/etNoOfFemale"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1" 
        android:inputType="number"/>
    </TableRow>

</TableLayout>
于 2012-11-13T06:40:37.223 に答える
-1

xml ファイル ページで以下のようなタグを使用して、適切に配置することができます。直面している pblm に関する詳細を提供できれば、さらに説明できます。

android:layout_marginLeft="25dp"
android:layout_below="@+id/imageView1"

最初のコードは左から 25 dp のマージンを与え、2 番目のコードはフィールドを imageview1 のすぐ下に揃えます。

もう 1 つの方法があり ます。テキスト ビューまたはデザイン ページに追加したものを右クリックし、[その他のプロパティ] -> [レイアウト パラメータ] -> 必要な項目を選択します [すべての整列プロパティが含まれています。

これがあなたを助けることを願っています。ありがとうございました

于 2012-11-13T06:31:09.433 に答える