我想将两个文本视图分组在一个组中,并像标签和值一样使用。是否有任何组件可以在 android 中对两个文本视图进行分组?如何在android布局中完成?
问问题
115165 次
2 回答
36
您可以使用<LinearLayout>
水平分组元素。您还应该使用样式来设置边距、背景和其他属性。这将允许您不为您使用的每个标签重复代码。这是一个例子:
<LinearLayout
style="@style/FormItem"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
style="@style/FormLabel"
android:layout_width="wrap_content"
android:layout_height="@dimen/default_element_height"
android:text="@string/name_label"
/>
<EditText
style="@style/FormText.Editable"
android:id="@+id/cardholderName"
android:layout_width="wrap_content"
android:layout_height="@dimen/default_element_height"
android:layout_weight="1"
android:gravity="right|center_vertical"
android:hint="@string/card_name_hint"
android:imeOptions="actionNext"
android:singleLine="true"
/>
</LinearLayout>
您还可以根据上面的布局创建自定义视图。你看过创建自定义视图吗?
于 2012-11-27T11:51:16.800 回答
2
您应该实现一个自定义列表视图,以便您定义一次布局并为列表视图中的每一行绘制它。
于 2012-11-27T11:56:56.943 回答