<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>
更新:权重
答案 0 :(得分: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>
答案 1 :(得分:0)
任何一个属性都可以应用于View的(可视控件)水平或垂直大小。它用于根据内容或其父布局的大小设置视图或布局大小,而不是显式指定维度。
fill_parent(在API级别8及更高级别中已弃用并重命名为MATCH_PARENT)
将窗口小部件的布局设置为fill_parent将强制它展开以占用放置在布局元素中的可用空间。这大致相当于将Windows窗体控件的dockstyle设置为Fill。 / p>
将顶级布局或控件设置为fill_parent将强制它占据整个屏幕。
WRAP_CONTENT
将视图的大小设置为wrap_content将强制它仅扩展到足以包含它包含的值(或子控件)。对于控件 - 如文本框(TextView)或图像(ImageView) - 这将包装正在显示的文本或图像。对于布局元素,它将调整布局大小以适合作为其子项添加的控件/布局。
这大致相当于将Windows窗体控件的Autosize属性设置为True。