diff options
| -rw-r--r-- | main/res/layout/init.xml | 6 | ||||
| -rw-r--r-- | main/res/layout/touch.xml | 2 | ||||
| -rw-r--r-- | main/res/layout/visit.xml | 2 | ||||
| -rw-r--r-- | main/res/layout/waypoint_new.xml | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/main/res/layout/init.xml b/main/res/layout/init.xml index 6708bcc..0eacc5d 100644 --- a/main/res/layout/init.xml +++ b/main/res/layout/init.xml @@ -49,7 +49,7 @@ <EditText style="@style/edittext_full" android:id="@+id/password" android:hint="@string/init_password" - android:password="true" /> + android:inputType="textPassword"/> <Button style="@style/button_full" android:id="@+id/log_me_in" android:lines="2" @@ -65,7 +65,7 @@ <EditText style="@style/edittext_full" android:id="@+id/passvote" android:hint="@string/init_passvote" - android:password="true" /> + android:inputType="textPassword"/> <!-- ** --> <RelativeLayout style="@style/separator_horizontal_layout" > <View style="@style/separator_horizontal" /> @@ -163,7 +163,7 @@ android:singleLine="false" android:layout_height="wrap_content" android:minLines="3" - android:capitalize="sentences" /> + android:inputType="textCapSentences"/> <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > diff --git a/main/res/layout/touch.xml b/main/res/layout/touch.xml index 06a9d25..eaed8a4 100644 --- a/main/res/layout/touch.xml +++ b/main/res/layout/touch.xml @@ -48,7 +48,7 @@ android:hint="@string/log_new_log_text" android:singleLine="false" android:lines="5" - android:capitalize="sentences" /> + android:inputType="textCapSentences" /> <LinearLayout android:id="@+id/tweet_box" android:layout_width="fill_parent" android:layout_height="wrap_content" diff --git a/main/res/layout/visit.xml b/main/res/layout/visit.xml index 8018d48..6bc0c56 100644 --- a/main/res/layout/visit.xml +++ b/main/res/layout/visit.xml @@ -50,7 +50,7 @@ android:singleLine="false" android:layout_height="wrap_content" android:minLines="5" - android:capitalize="sentences" /> + android:inputType="textCapSentences"/> <LinearLayout android:id="@+id/tweet_box" android:layout_width="fill_parent" android:layout_height="wrap_content" diff --git a/main/res/layout/waypoint_new.xml b/main/res/layout/waypoint_new.xml index 397f0ee..90d7c4d 100644 --- a/main/res/layout/waypoint_new.xml +++ b/main/res/layout/waypoint_new.xml @@ -85,7 +85,7 @@ android:id="@+id/note" style="@style/edittext_full" android:layout_height="wrap_content" - android:capitalize="sentences" + android:inputType="textCapSentences" android:hint="@string/waypoint_note" android:minLines="5" android:singleLine="false" /> |
