Android textview用作标签和值

时间:2012-11-27 11:45:09

标签: android android-layout

我想在一个组中对两个文本视图进行分组,并像标签和值一样使用。是否有任何组件在android中组合两个textviews?如何在Android布局中完成?

Sample label value

2 个答案:

答案 0 :(得分:27)

您可以使用<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>

您还可以在上面的布局上创建自定义视图。 你看过Creating custom view吗?

答案 1 :(得分:2)

您应该实现自定义列表视图,以便定义一次布局并为列表视图中的每一行绘制它。