I have a problem in input type attribute, I need a person name to be written in the edit text but when I run the application, the keyboard doesn't changed dynamically and it allows the user to enter any characters in the name field. Here is the code:
<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"
/>