diff options
author | Daniel Oeh <daniel@daniel-pc.(none)> | 2011-12-23 19:22:06 +0100 |
---|---|---|
committer | Daniel Oeh <daniel@daniel-pc.(none)> | 2011-12-23 19:22:06 +0100 |
commit | c9283f09dced6f156e13675ef4c13ebeb20cb9e5 (patch) | |
tree | 833961a4fd03b94086223dba9f658cb2841cbe77 /res | |
download | AntennaPod-c9283f09dced6f156e13675ef4c13ebeb20cb9e5.zip |
Initial Commit
Diffstat (limited to 'res')
-rw-r--r-- | res/drawable-hdpi/ic_launcher.png | bin | 0 -> 4147 bytes | |||
-rw-r--r-- | res/drawable-ldpi/ic_launcher.png | bin | 0 -> 1723 bytes | |||
-rw-r--r-- | res/drawable-mdpi/ic_launcher.png | bin | 0 -> 2574 bytes | |||
-rw-r--r-- | res/layout/feedlist_item.xml | 34 | ||||
-rw-r--r-- | res/layout/main.xml | 16 | ||||
-rw-r--r-- | res/values/strings.xml | 7 |
6 files changed, 57 insertions, 0 deletions
diff --git a/res/drawable-hdpi/ic_launcher.png b/res/drawable-hdpi/ic_launcher.png Binary files differnew file mode 100644 index 000000000..8074c4c57 --- /dev/null +++ b/res/drawable-hdpi/ic_launcher.png diff --git a/res/drawable-ldpi/ic_launcher.png b/res/drawable-ldpi/ic_launcher.png Binary files differnew file mode 100644 index 000000000..1095584ec --- /dev/null +++ b/res/drawable-ldpi/ic_launcher.png diff --git a/res/drawable-mdpi/ic_launcher.png b/res/drawable-mdpi/ic_launcher.png Binary files differnew file mode 100644 index 000000000..a07c69fa5 --- /dev/null +++ b/res/drawable-mdpi/ic_launcher.png diff --git a/res/layout/feedlist_item.xml b/res/layout/feedlist_item.xml new file mode 100644 index 000000000..f204d1807 --- /dev/null +++ b/res/layout/feedlist_item.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent" > + <ImageView + android:id="@+id/imgvFeedimage" + android:layout_height="fill_parent" + android:layout_width="50dip" + android:padding="10dip" + android:cropToPadding="true" + android:layout_alignParentLeft="true" + /> + <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_height="fill_parent" + android:layout_width="wrap_content" + android:layout_alignParentRight="true"> + <TextView + android:id="@+id/txtvFeedname" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + /> + <TextView + android:id="@+id/txtvNewEpisodes" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + + /> + + + </LinearLayout> + + + +</RelativeLayout>
\ No newline at end of file diff --git a/res/layout/main.xml b/res/layout/main.xml new file mode 100644 index 000000000..45ed9b9b5 --- /dev/null +++ b/res/layout/main.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="vertical" > + <EditText + android:id="@+id/textedit" + android:layout_width="wrap_content" + android:layout_height="wrap_content" /> + <Button + android:id="@+id/testbutton" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="Test2" /> + +</LinearLayout> diff --git a/res/values/strings.xml b/res/values/strings.xml new file mode 100644 index 000000000..fcd5d2837 --- /dev/null +++ b/res/values/strings.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + + <string name="hello">Hello World, PodfetcherActivity!</string> + <string name="app_name">Podfetcher</string> + +</resources>
\ No newline at end of file |