diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-11-05 23:31:27 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-11-05 23:31:27 +0000 |
| commit | 540dd9c2d0510636536684a4c0b88fabd5326a9b (patch) | |
| tree | 34438133141b02cf141106522395f16557770713 /android/res | |
| parent | a2a243b34e87f48272912c1e943b4a3c5b2b813b (diff) | |
| download | rockbox-540dd9c2d0510636536684a4c0b88fabd5326a9b.zip rockbox-540dd9c2d0510636536684a4c0b88fabd5326a9b.tar.gz rockbox-540dd9c2d0510636536684a4c0b88fabd5326a9b.tar.bz2 rockbox-540dd9c2d0510636536684a4c0b88fabd5326a9b.tar.xz | |
A bit of indentation/whitespace changes in the xml files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28504 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'android/res')
| -rw-r--r-- | android/res/layout/keyboardinput.xml | 11 | ||||
| -rw-r--r-- | android/res/layout/main.xml | 3 | ||||
| -rw-r--r-- | android/res/values/strings.xml | 2 |
3 files changed, 11 insertions, 5 deletions
diff --git a/android/res/layout/keyboardinput.xml b/android/res/layout/keyboardinput.xml index 124eda8..215cde0 100644 --- a/android/res/layout/keyboardinput.xml +++ b/android/res/layout/keyboardinput.xml @@ -1,4 +1,11 @@ <?xml version="1.0" encoding="utf-8"?> -<AbsoluteLayout android:id="@+id/AbsoluteLayout01" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android"><EditText android:layout_height="wrap_content" android:text="Some Text" android:layout_width="fill_parent" android:id="@+id/KbdInput"></EditText> -</AbsoluteLayout> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"> + android:layout_width="fill_parent" + android:layout_height="fill_parent" + <EditText android:layout_height="wrap_content" + android:text="Some Text" + android:layout_width="fill_parent" + android:id="@+id/KbdInput"> + </EditText> +</LinearLayout> diff --git a/android/res/layout/main.xml b/android/res/layout/main.xml index 4361cfe..840fb4c 100644 --- a/android/res/layout/main.xml +++ b/android/res/layout/main.xml @@ -2,6 +2,5 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" - android:layout_height="fill_parent" - > + android:layout_height="fill_parent"> </LinearLayout> diff --git a/android/res/values/strings.xml b/android/res/values/strings.xml index a2762dd..729935c 100644 --- a/android/res/values/strings.xml +++ b/android/res/values/strings.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <resources> - <string name="app_name">Rockbox</string> +<string name="app_name">Rockbox</string> <string name="notification">Rockbox</string> <string name="OK">OK</string> <string name="Cancel">Cancel</string> |