3

一枚の絵は一万語に値する。: ) 右隅が正しく表示されません。ありがとうございました!

    <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:layout_margin="15dp"
tools:context=".MainActivity" >

                    <GridLayout
                         android:layout_width="fill_parent"
                         android:layout_height="fill_parent"
                         android:columnCount="2"
                         android:rowCount="2"
                         android:layout_weight="6" >

                         <TextView 
                             android:text="Blala:"
                             android:layout_weight="1"
                              />
                         <EditText 
                             android:layout_width="fill_parent"
                             android:layout_height="wrap_content"
                             android:layout_gravity="center"
                             android:singleLine="true"
                             android:layout_weight="2"
                             />
                         <TextView 
                             android:text="Blalalallalalalalallaa:"
                             android:layout_weight="1"
                              />
                         <EditText 
                             android:layout_width="fill_parent"
                             android:layout_height="wrap_content"
                             android:singleLine="true"
                             android:layout_weight="2" />
                     </GridLayout>

更新: 重み ここに画像の説明を入力

4

2 に答える 2

9

答え:

次のレイアウトを使用できます。

<GridLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:columnCount="2" 
>
<TextView
android:text="Blala:" 
android:layout_row="0" 
android:layout_gravity="fill_horizontal" 
/>
<EditText
android:singleLine="true" 
android:layout_gravity="fill_horizontal" 
/>
<TextView
android:text="Blal234243a:" 
android:layout_row="0" 
android:layout_gravity="fill_horizontal" 
/>
<EditText
android:singleLine="true" 
android:layout_gravity="fill_horizontal" 
/>

</GridLayout>
于 2013-03-27T08:47:13.807 に答える
0

どちらの属性も、ビュー (ビジュアル コントロール) の水平または垂直サイズに適用できます。ディメンションを明示的に指定するのではなく、コンテンツまたは親レイアウトのサイズに基づいてビューまたはレイアウトのサイズを設定するために使用されます。

fill_parent (廃止され、API レベル 8 以降では MATCH_PARENT に名前が変更されました)

ウィジェットのレイアウトを fill_parent に設定すると、ウィジェットが配置されているレイアウト要素内で使用可能なスペースをすべて占有するように強制的に拡張されます。これは、Windows フォーム コントロールのドックスタイルを Fill に設定することとほぼ同じです。

最上位のレイアウトまたはコントロールを fill_parent に設定すると、強制的に画面全体が占有されます。

wrap_content

ビューのサイズを wrap_content に設定すると、ビューに含まれる値 (または子コントロール) を含めるのに十分な範囲だけ拡張されます。テキスト ボックス (TextView) や画像 (ImageView) などのコントロールの場合、表示されているテキストまたは画像がラップされます。レイアウト要素の場合、子として追加されたコントロール/レイアウトに合わせてレイアウトのサイズを変更します。

これは、Windows フォーム コントロールの Autosize プロパティを True に設定するのとほぼ同じです。

于 2013-03-25T15:30:42.420 に答える