diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2010-08-17 01:56:11 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2010-08-17 02:19:39 +0200 |
commit | d773a39a1f07ae4b8021222a47c16b048d7fd435 (patch) | |
tree | 3558cbd77c8e6aa54f5593b556fcbf330fea0120 /res | |
download | AndMAL-d773a39a1f07ae4b8021222a47c16b048d7fd435.tar.gz AndMAL-d773a39a1f07ae4b8021222a47c16b048d7fd435.tar.xz AndMAL-d773a39a1f07ae4b8021222a47c16b048d7fd435.zip |
initial commit
Diffstat (limited to 'res')
-rw-r--r-- | res/drawable/icon.png | bin | 0 -> 2574 bytes | |||
-rw-r--r-- | res/layout/list_header.xml | 10 | ||||
-rw-r--r-- | res/layout/list_item.xml | 31 | ||||
-rw-r--r-- | res/values/strings.xml | 5 |
4 files changed, 46 insertions, 0 deletions
diff --git a/res/drawable/icon.png b/res/drawable/icon.png Binary files differnew file mode 100644 index 0000000..a07c69f --- /dev/null +++ b/res/drawable/icon.png diff --git a/res/layout/list_header.xml b/res/layout/list_header.xml new file mode 100644 index 0000000..fcaf7a4 --- /dev/null +++ b/res/layout/list_header.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<TextView + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/list_header_title" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:paddingTop="2dip" + android:paddingBottom="2dip" + android:paddingLeft="5dip" + style="?android:attr/listSeparatorTextViewStyle" />
\ No newline at end of file diff --git a/res/layout/list_item.xml b/res/layout/list_item.xml new file mode 100644 index 0000000..6c0641d --- /dev/null +++ b/res/layout/list_item.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<TableLayout + android:id="@+id/TableLayout01" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + xmlns:android="http://schemas.android.com/apk/res/android" + android:stretchColumns="1" + > + <TableRow> + <TextView + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/list_item_title" + android:layout_height="wrap_content" + android:layout_width="wrap_content" + android:paddingTop="10dip" + android:paddingBottom="10dip" + android:paddingLeft="5dip" + android:textAppearance="?android:attr/textAppearanceMedium" + android:layout_column="1" + /> + <TextView + android:layout_height="wrap_content" + android:layout_width="wrap_content" + android:text="@+id/list_item_other" + android:id="@+id/list_item_other" + android:textAppearance="?android:attr/textAppearanceSmall" + android:paddingRight="5dip" + android:gravity="right" /> + </TableRow> +</TableLayout> diff --git a/res/values/strings.xml b/res/values/strings.xml new file mode 100644 index 0000000..89038cf --- /dev/null +++ b/res/values/strings.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="hello">Hello World, List!</string> + <string name="app_name">AndMAL</string> +</resources> |