私の Android アプリケーションには、ユーザーが記入しなければならないフォームがあります。このようなものを探していました。このhttp://img688.imageshack.us/img688/4162/photocr.jpg。編集テキストがこのようにきれいに見える場所を意味します。Android でこれを再現する方法についての提案。このような UI を持つ Android のアプリケーションをいくつか見てきました。どんな提案でも大歓迎です。
敬具、
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/round_linearlayout"
android:orientation="vertical" >
<EditText
android:id="@+id/first_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/first_name_hint_text"
android:singleLine="true"
android:textColor="#778BB0"
android:textColorHint="#778BB0"
android:textSize="13sp"
android:textStyle="bold" />
<EditText
android:id="@+id/last_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/last_name_hint_text"
android:singleLine="true"
android:textColor="#778BB0"
android:textColorHint="#778BB0"
android:textSize="13sp"
android:textStyle="bold" />
<EditText
android:id="@+id/email_address"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/email_address_hint_text"
android:singleLine="true"
android:textColor="#778BB0"
android:textColorHint="#778BB0"
android:textSize="13sp"
android:textStyle="bold" />
<EditText
android:id="@+id/password"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/password_hint_text"
android:singleLine="true"
android:textColor="#778BB0"
android:textColorHint="#778BB0"
android:textSize="13sp"
android:textStyle="bold" />
<Button
android:id="@+id/already_have_an_account"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="@android:color/transparent"
android:padding="20dp"
android:text="@string/already_have_an_account"
android:textColor="@color/hyperlink" />
</LinearLayout>