diff options
author | Xavier Ducrohet <xav@android.com> | 2012-03-07 19:57:28 -0800 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2012-03-07 20:25:35 -0800 |
commit | a81979bcbf2378fe405967d5a3d51420fbbd1730 (patch) | |
tree | 592965c1d4c5e7ac93d1e31ef565aa5249b7e559 /testapps/libsAndJarTest/app/res | |
parent | a08befd52438d523cb2cd41b53f961785d3872fd (diff) | |
download | sdk-a81979bcbf2378fe405967d5a3d51420fbbd1730.zip sdk-a81979bcbf2378fe405967d5a3d51420fbbd1730.tar.gz sdk-a81979bcbf2378fe405967d5a3d51420fbbd1730.tar.bz2 |
New test projects
This is similar to javaProjectTest without the reference
to the Java-only Eclipse project so that it can be tested
with Ant.
Change-Id: I2f7887ec79cf6cdd7dad7037abb67390906d54f1
Diffstat (limited to 'testapps/libsAndJarTest/app/res')
-rw-r--r-- | testapps/libsAndJarTest/app/res/drawable-hdpi/icon.png | bin | 0 -> 4147 bytes | |||
-rw-r--r-- | testapps/libsAndJarTest/app/res/drawable-ldpi/icon.png | bin | 0 -> 1723 bytes | |||
-rw-r--r-- | testapps/libsAndJarTest/app/res/drawable-mdpi/icon.png | bin | 0 -> 2574 bytes | |||
-rw-r--r-- | testapps/libsAndJarTest/app/res/layout/main.xml | 43 | ||||
-rw-r--r-- | testapps/libsAndJarTest/app/res/values/strings.xml | 6 |
5 files changed, 49 insertions, 0 deletions
diff --git a/testapps/libsAndJarTest/app/res/drawable-hdpi/icon.png b/testapps/libsAndJarTest/app/res/drawable-hdpi/icon.png Binary files differnew file mode 100644 index 0000000..8074c4c --- /dev/null +++ b/testapps/libsAndJarTest/app/res/drawable-hdpi/icon.png diff --git a/testapps/libsAndJarTest/app/res/drawable-ldpi/icon.png b/testapps/libsAndJarTest/app/res/drawable-ldpi/icon.png Binary files differnew file mode 100644 index 0000000..1095584 --- /dev/null +++ b/testapps/libsAndJarTest/app/res/drawable-ldpi/icon.png diff --git a/testapps/libsAndJarTest/app/res/drawable-mdpi/icon.png b/testapps/libsAndJarTest/app/res/drawable-mdpi/icon.png Binary files differnew file mode 100644 index 0000000..a07c69f --- /dev/null +++ b/testapps/libsAndJarTest/app/res/drawable-mdpi/icon.png diff --git a/testapps/libsAndJarTest/app/res/layout/main.xml b/testapps/libsAndJarTest/app/res/layout/main.xml new file mode 100644 index 0000000..16df43c --- /dev/null +++ b/testapps/libsAndJarTest/app/res/layout/main.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="vertical" > + + <TextView + android:id="@+id/app" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="\\?" + tools:ignore="HardcodedText" /> + + <TextView + android:id="@+id/lib1" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="\\?" + tools:ignore="HardcodedText" /> + + <TextView + android:id="@+id/lib2" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="\\?" + tools:ignore="HardcodedText" /> + + <TextView + android:id="@+id/basicJar" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="\\?" + tools:ignore="HardcodedText" /> + + <TextView + android:id="@+id/basicJar2" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="\\?" + tools:ignore="HardcodedText" /> + +</LinearLayout>
\ No newline at end of file diff --git a/testapps/libsAndJarTest/app/res/values/strings.xml b/testapps/libsAndJarTest/app/res/values/strings.xml new file mode 100644 index 0000000..8541aa7 --- /dev/null +++ b/testapps/libsAndJarTest/app/res/values/strings.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + + <string name="app_name">libsAndJarTest-app</string> + +</resources>
\ No newline at end of file |