ユーザー入力を収集する必要があり、上記のスクリーンショットのように、ストック android の「連絡先アプリを追加」と同じスタイルを使用したい (まだ画像を投稿できません):
http://www.vogella.com/articles/AndroidSQLite/images/xcontact30.png.pagespeed.ic.rcgxciehCj.png
EditText ウィジェットを使用できることはわかっていますが、「電話」、「メール」ウィジェットを追加するにはどうすればよいですか? 彼らもテキストを編集していますか?xml の例を教えてください。
編集:表示したいのは「電話」ラベルです(エントリ自体ではありません):電話と同じにするためにxml値が必要です(フォント、スタイル、タイプ)。
どうもありがとう
EDIT 2 (解決済み): ユーザー @divoom12 のおかげでこれを解決しました。これは、 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" />