diff options
author | Samuel Tardieu <sam@rfc1149.net> | 2011-09-16 14:28:47 +0200 |
---|---|---|
committer | Samuel Tardieu <sam@rfc1149.net> | 2011-09-16 14:28:47 +0200 |
commit | f76f2b8d3c2e1dd06262e88e6ccf5d29521dacf3 (patch) | |
tree | 811888e38c42b8101095cfc166a5c37f6b8c1ebe /tests/res | |
parent | 853d0fecf124a3278f4ae41f8e905e7b87b782b9 (diff) | |
download | cgeo-f76f2b8d3c2e1dd06262e88e6ccf5d29521dacf3.zip cgeo-f76f2b8d3c2e1dd06262e88e6ccf5d29521dacf3.tar.gz cgeo-f76f2b8d3c2e1dd06262e88e6ccf5d29521dacf3.tar.bz2 |
Reorganize tests to include them in the main repository
Diffstat (limited to 'tests/res')
-rw-r--r-- | tests/res/drawable-hdpi/icon.png | bin | 0 -> 4147 bytes | |||
-rw-r--r-- | tests/res/drawable-ldpi/icon.png | bin | 0 -> 1723 bytes | |||
-rw-r--r-- | tests/res/drawable-mdpi/icon.png | bin | 0 -> 2574 bytes | |||
-rw-r--r-- | tests/res/layout/main.xml | 12 | ||||
-rw-r--r-- | tests/res/values/strings.xml | 5 |
5 files changed, 17 insertions, 0 deletions
diff --git a/tests/res/drawable-hdpi/icon.png b/tests/res/drawable-hdpi/icon.png Binary files differnew file mode 100644 index 0000000..8074c4c --- /dev/null +++ b/tests/res/drawable-hdpi/icon.png diff --git a/tests/res/drawable-ldpi/icon.png b/tests/res/drawable-ldpi/icon.png Binary files differnew file mode 100644 index 0000000..1095584 --- /dev/null +++ b/tests/res/drawable-ldpi/icon.png diff --git a/tests/res/drawable-mdpi/icon.png b/tests/res/drawable-mdpi/icon.png Binary files differnew file mode 100644 index 0000000..a07c69f --- /dev/null +++ b/tests/res/drawable-mdpi/icon.png diff --git a/tests/res/layout/main.xml b/tests/res/layout/main.xml new file mode 100644 index 0000000..3a5f117 --- /dev/null +++ b/tests/res/layout/main.xml @@ -0,0 +1,12 @@ +<?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:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="@string/hello" + /> +</LinearLayout> diff --git a/tests/res/values/strings.xml b/tests/res/values/strings.xml new file mode 100644 index 0000000..e652c81 --- /dev/null +++ b/tests/res/values/strings.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="hello">Hello World!</string> + <string name="app_name">cgeo-osTest</string> +</resources> |