aboutsummaryrefslogtreecommitdiffstats
path: root/samples/customtiles/res
diff options
context:
space:
mode:
Diffstat (limited to 'samples/customtiles/res')
-rw-r--r--samples/customtiles/res/drawable-hdpi/ic_launcher.pngbin0 -> 9397 bytes
-rw-r--r--samples/customtiles/res/drawable-ldpi/ic_launcher.pngbin0 -> 2729 bytes
-rw-r--r--samples/customtiles/res/drawable-mdpi/ic_launcher.pngbin0 -> 5237 bytes
-rw-r--r--samples/customtiles/res/drawable-xhdpi/ic_launcher.pngbin0 -> 14383 bytes
-rw-r--r--samples/customtiles/res/layout/main.xml14
-rw-r--r--samples/customtiles/res/values/strings.xml5
6 files changed, 19 insertions, 0 deletions
diff --git a/samples/customtiles/res/drawable-hdpi/ic_launcher.png b/samples/customtiles/res/drawable-hdpi/ic_launcher.png
new file mode 100644
index 00000000..96a442e5
--- /dev/null
+++ b/samples/customtiles/res/drawable-hdpi/ic_launcher.png
Binary files differ
diff --git a/samples/customtiles/res/drawable-ldpi/ic_launcher.png b/samples/customtiles/res/drawable-ldpi/ic_launcher.png
new file mode 100644
index 00000000..99238729
--- /dev/null
+++ b/samples/customtiles/res/drawable-ldpi/ic_launcher.png
Binary files differ
diff --git a/samples/customtiles/res/drawable-mdpi/ic_launcher.png b/samples/customtiles/res/drawable-mdpi/ic_launcher.png
new file mode 100644
index 00000000..359047df
--- /dev/null
+++ b/samples/customtiles/res/drawable-mdpi/ic_launcher.png
Binary files differ
diff --git a/samples/customtiles/res/drawable-xhdpi/ic_launcher.png b/samples/customtiles/res/drawable-xhdpi/ic_launcher.png
new file mode 100644
index 00000000..71c6d760
--- /dev/null
+++ b/samples/customtiles/res/drawable-xhdpi/ic_launcher.png
Binary files differ
diff --git a/samples/customtiles/res/layout/main.xml b/samples/customtiles/res/layout/main.xml
new file mode 100644
index 00000000..8b07f8d9
--- /dev/null
+++ b/samples/customtiles/res/layout/main.xml
@@ -0,0 +1,14 @@
+<?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"
+ android:gravity="center_horizontal"
+ >
+ <Button
+ android:id="@+id/custom_tile_button"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/custom_tile_publish"/>
+</LinearLayout>
+
diff --git a/samples/customtiles/res/values/strings.xml b/samples/customtiles/res/values/strings.xml
new file mode 100644
index 00000000..9bde4836
--- /dev/null
+++ b/samples/customtiles/res/values/strings.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="app_name">Custom Tile Sample</string>
+ <string name="custom_tile_publish">Publish tile</string>
+</resources>