入力タイプ属性に問題があります。編集テキストに人名を書き込む必要がありますが、アプリケーションを実行すると、キーボードが動的に変更されず、ユーザーは名前フィールドに任意の文字を入力できます。コードは次のとおりです。
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Name:"/>
<EditText
android:id="@+id/edittext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textPersonName"
/>