我需要收集用户输入,并且我想使用与股票 android“添加联系人应用程序”相同的样式,如上面的屏幕截图(仍然无法发布图像):
http://www.vogella.com/articles/AndroidSQLite/images/xcontact30.png.pagespeed.ic.rcgxciehCj.png
我知道我可以使用 EditText 小部件,但如何添加“电话”、“电子邮件”小部件?他们也编辑文本吗?你能给我一些xml例子吗?
编辑:我想要显示的是“电话”标签(不是条目本身):我需要 xml 值以使其与电话相同(字体、样式、类型)。
非常感谢
编辑2(已解决): 感谢用户@divoom12,我解决了这个问题,这有助于Android在布局中绘制分隔符/分隔线?
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:paddingBottom="1dp"
android:paddingLeft="6dp"
android:text="CATEGORY"
android:textColor="#33b5e5"
android:textSize="15sp"
android:textStyle="bold" />
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#33b5e5" />
<EditText
android:id="@+id/editText1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPersonName"
android:text="@string/name"
android:textColor="#ffffffff"
android:textSize="15sp" />