I need to collect user input, and I want to use the same style as the stock android "add contact app", like the screenshot above (can't post images still):
http://www.vogella.com/articles/AndroidSQLite/images/xcontact30.png.pagespeed.ic.rcgxciehCj.png
I know I can use the EditText widget but how I add the "Phone", "Email" widget? Are they edit text too? Can you give me some xml example?
EDIT: What I want to diplay is the "Phone" label (not the entry itself): I need the xml values to make it identical to the phone (font, style, type).
Thanks a lot
EDIT 2 (SOLVED): I solved this thanks to user @divoom12 and this help Android Drawing Separator/Divider Line in Layout?
<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" />