diff options
author | Joe Robinson <joe@lc8n.com> | 2013-01-31 22:17:03 +0000 |
---|---|---|
committer | Joe Robinson <joe@lc8n.com> | 2013-01-31 22:17:03 +0000 |
commit | 6ef031b66061629dc814c786521cb182b628f346 (patch) | |
tree | e2f8b35587fa61167b6f92a318e91ee7fa95183f /res | |
parent | 559305e42e1ea09b8d26085e8f8355bdb6ba0352 (diff) |
I'm a bad person who doesn't commit to git
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/share.xml | 110 | ||||
-rw-r--r-- | res/layout/soundrecorder.xml | 1 | ||||
-rw-r--r-- | res/values-v11/strings.xml | 6 | ||||
-rw-r--r-- | res/values-v11/themes.xml | 6 | ||||
-rw-r--r-- | res/values-v14/strings.xml | 6 | ||||
-rw-r--r-- | res/values-v14/themes.xml | 6 | ||||
-rw-r--r-- | res/values/strings.xml | 17 | ||||
-rw-r--r-- | res/values/themes.xml | 6 |
8 files changed, 123 insertions, 35 deletions
diff --git a/res/layout/share.xml b/res/layout/share.xml index 6a70ea3..2573155 100644 --- a/res/layout/share.xml +++ b/res/layout/share.xml @@ -1,30 +1,82 @@ <?xml version="1.0" encoding="utf-8"?> -<LinearLayout - xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="vertical" - android:layout_width="fill_parent" - android:layout_height="fill_parent"> - <TextView - android:text="Enter Filename" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - /> - <EditText - android:id="@+id/filename" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:focusable="true" - /> - <TextView - android:text=" " - android:layout_width="fill_parent" - android:layout_height="wrap_content" - /> - <Button - android:id="@+id/uploadfile" - android:layout_height="wrap_content" - android:layout_width="fill_parent" - android:text="Upload" - /> - -</LinearLayout> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:android1="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="vertical" > +<ScrollView + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + <LinearLayout + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:gravity="top" + android:orientation="vertical" > + + <TextView + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="Enter Filename" /> + + <EditText + android:id="@+id/filename" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:focusable="true" /> + <Button + android:id="@+id/uploadfile" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="Upload" /> + + <RelativeLayout + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:gravity="top" + android:orientation="horizontal" + android:background="#333333" + > + + <ImageView + android:id="@+id/thumbnail" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_centerHorizontal="true" + android:layout_margin="5dp" + android1:layout_marginBottom="5dp" /> + + </RelativeLayout> + <LinearLayout + android:id="@+id/content" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" > + <Button + android:id="@+id/rotateleft" + android:layout_height="wrap_content" + android:layout_width="wrap_content" + android:text="Rotate Left" + /> + <Button + android:id="@+id/rotateright" + android:layout_height="wrap_content" + android:layout_width="wrap_content" + android:text="Rotate Right" + /> + + <CheckBox + android1:id="@+id/resize" + android1:layout_width="wrap_content" + android1:layout_height="wrap_content" + android1:checked="true" + android1:text="Reduce Size" /> + + </LinearLayout> + + + </LinearLayout> +</ScrollView> +</RelativeLayout> + + + diff --git a/res/layout/soundrecorder.xml b/res/layout/soundrecorder.xml index f707e88..58b62a2 100644 --- a/res/layout/soundrecorder.xml +++ b/res/layout/soundrecorder.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Button
diff --git a/res/values-v11/strings.xml b/res/values-v11/strings.xml new file mode 100644 index 0000000..9e611cf --- /dev/null +++ b/res/values-v11/strings.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="hello">Hello World, fileBrowser!</string>
+ <string name="app_name">blauploader</string>
+ <string name="cancel">Cancel</string>
+</resources>
diff --git a/res/values-v11/themes.xml b/res/values-v11/themes.xml new file mode 100644 index 0000000..933554f --- /dev/null +++ b/res/values-v11/themes.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="LightTheme" parent="@android:style/Theme.Holo.Light"> + <!-- Any customizations for your app running on pre-3.0 devices here --> + </style> +</resources>
\ No newline at end of file diff --git a/res/values-v14/strings.xml b/res/values-v14/strings.xml new file mode 100644 index 0000000..9e611cf --- /dev/null +++ b/res/values-v14/strings.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="hello">Hello World, fileBrowser!</string>
+ <string name="app_name">blauploader</string>
+ <string name="cancel">Cancel</string>
+</resources>
diff --git a/res/values-v14/themes.xml b/res/values-v14/themes.xml new file mode 100644 index 0000000..393e3e2 --- /dev/null +++ b/res/values-v14/themes.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="LightTheme" parent="@android:style/Theme.Holo.Light.DarkActionBar"> + <!-- Any customizations for your app running on pre-3.0 devices here --> + </style> +</resources>
\ No newline at end of file diff --git a/res/values/strings.xml b/res/values/strings.xml index 9e611cf..c5d02ba 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -1,6 +1,11 @@ -<?xml version="1.0" encoding="utf-8"?>
-<resources>
- <string name="hello">Hello World, fileBrowser!</string>
- <string name="app_name">blauploader</string>
- <string name="cancel">Cancel</string>
-</resources>
+<?xml version="1.0" encoding="utf-8"?> +<resources> + + <string name="hello">Hello World, fileBrowser!</string> + <string name="app_name">blauploader</string> + <string name="cancel">Cancel</string> + <string name="hello_world">Hello world!</string> + <string name="menu_settings">Settings</string> + <string name="title_activity_main">MainActivity</string> + +</resources>
\ No newline at end of file diff --git a/res/values/themes.xml b/res/values/themes.xml new file mode 100644 index 0000000..884ba69 --- /dev/null +++ b/res/values/themes.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="LightTheme" parent="@android:style/Theme.Light"> + <!-- Any customizations for your app running on pre-3.0 devices here --> + </style> +</resources>
\ No newline at end of file |