diff options
| author | Marco Jacob <mjacob@union06.de> | 2012-07-22 21:33:54 +0200 |
|---|---|---|
| committer | Marco Jacob <mjacob@union06.de> | 2012-07-22 21:33:54 +0200 |
| commit | a35c0f62c71887fcf69182608e999d519013132b (patch) | |
| tree | 832f5c437a1b930331e1f19e3093310d304529df /main/res/layout | |
| parent | 9ca1feffb7476edb91f4a81a2200631fa4f7ed2d (diff) | |
| download | cgeo-a35c0f62c71887fcf69182608e999d519013132b.zip cgeo-a35c0f62c71887fcf69182608e999d519013132b.tar.gz cgeo-a35c0f62c71887fcf69182608e999d519013132b.tar.bz2 | |
fixes #1891 - multiline EditText is multiline again
Diffstat (limited to 'main/res/layout')
| -rw-r--r-- | main/res/layout/init.xml | 2 | ||||
| -rw-r--r-- | main/res/layout/touch.xml | 4 | ||||
| -rw-r--r-- | main/res/layout/visit.xml | 2 | ||||
| -rw-r--r-- | main/res/layout/waypoint_new.xml | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/main/res/layout/init.xml b/main/res/layout/init.xml index 0eacc5d..80a12ca 100644 --- a/main/res/layout/init.xml +++ b/main/res/layout/init.xml @@ -163,7 +163,7 @@ android:singleLine="false" android:layout_height="wrap_content" android:minLines="3" - android:inputType="textCapSentences"/> + android:inputType="textMultiLine|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 eaed8a4..0341e39 100644 --- a/main/res/layout/touch.xml +++ b/main/res/layout/touch.xml @@ -45,10 +45,10 @@ android:hint="@string/trackable_code" /> <EditText style="@style/edittext_full" android:id="@+id/log" - android:hint="@string/log_new_log_text" + android:hint="@string/log_new_log_text" android:singleLine="false" android:lines="5" - android:inputType="textCapSentences" /> + android:inputType="textMultiLine|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 6bc0c56..8e2f06b 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:inputType="textCapSentences"/> + android:inputType="textMultiLine|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 90d7c4d..dfe79fc 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:inputType="textCapSentences" + android:inputType="textMultiLine|textCapSentences" android:hint="@string/waypoint_note" android:minLines="5" android:singleLine="false" /> |
