summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/samples/store-android/res/layout
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-05-26 22:50:31 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-05-26 22:50:31 +0000
commit090512087de4e4a2bbc346a9bd0ada61a6f337bf (patch)
treeb1621b1b3ceaeb61ba2593926d01726f0503a91c /branches/sca-java-1.x/samples/store-android/res/layout
parentd8688ef4eb4ef025403952e37194c896a3337aab (diff)
TUSCANY-3060 - Applying SANNI Lookman patch with updates to Android Store UI
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@778916 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.x/samples/store-android/res/layout')
-rw-r--r--branches/sca-java-1.x/samples/store-android/res/layout/cat_row.xml19
-rw-r--r--branches/sca-java-1.x/samples/store-android/res/layout/main.xml54
-rw-r--r--branches/sca-java-1.x/samples/store-android/res/layout/shop_row.xml20
3 files changed, 77 insertions, 16 deletions
diff --git a/branches/sca-java-1.x/samples/store-android/res/layout/cat_row.xml b/branches/sca-java-1.x/samples/store-android/res/layout/cat_row.xml
new file mode 100644
index 0000000000..e7f71cb0b6
--- /dev/null
+++ b/branches/sca-java-1.x/samples/store-android/res/layout/cat_row.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="horizontal"
+ android:layout_width="fill_parent"
+ android:padding="10px"
+ android:layout_height="50px">
+ <TextView
+ android:id="@+id/txtItemC"
+ android:layout_width="250px"
+ android:layout_height="30px"
+ android:textSize="20px"
+
+ />
+
+ <ImageView android:src="@drawable/addc"
+ android:layout_width="30px"
+ android:layout_height="30px"
+ />
+</LinearLayout> \ No newline at end of file
diff --git a/branches/sca-java-1.x/samples/store-android/res/layout/main.xml b/branches/sca-java-1.x/samples/store-android/res/layout/main.xml
index f7494f5a3a..7f296e9ac0 100644
--- a/branches/sca-java-1.x/samples/store-android/res/layout/main.xml
+++ b/branches/sca-java-1.x/samples/store-android/res/layout/main.xml
@@ -17,27 +17,49 @@
android:layout_height="fill_parent">
- <ListView android:id="@+id/ListView01"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- />
+ <ListView android:id="@+id/ListView01"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content" />
- <LinearLayout
- android:id="@+id/tab02"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
+ <LinearLayout
+ android:id="@+id/tab02"
+ android:orientation="vertical"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
- <ListView android:id="@+id/ListView02"
+ <TextView
+ android:id="@+id/txtThx"
+ android:layout_width="fill_parent"
+ android:layout_height="30px"
+ android:text="@string/title_thx"
+ />
+ <TextView
+ android:id="@+id/txtEmpty"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ />
+ <LinearLayout
+ android:orientation="horizontal"
+ android:layout_width="fill_parent"
+ android:layout_height="41px">
+
+ <TextView
+ android:id="@+id/txtTotal"
+ android:layout_width="200px"
+ android:layout_height="30px"
+ android:text="@string/title_order"
+ />
+
+ <Button android:id="@+id/btnClean"
+ android:layout_width="100px"
+ android:layout_height="40px"
+ />
+ </LinearLayout>
+
+ <ListView android:id="@+id/ListView02"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
-
- <TextView
- android:id="@+id/txtTotal"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- />
</LinearLayout>
</FrameLayout>
diff --git a/branches/sca-java-1.x/samples/store-android/res/layout/shop_row.xml b/branches/sca-java-1.x/samples/store-android/res/layout/shop_row.xml
new file mode 100644
index 0000000000..a2ffeea56f
--- /dev/null
+++ b/branches/sca-java-1.x/samples/store-android/res/layout/shop_row.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="horizontal"
+ android:layout_width="fill_parent"
+ android:layout_height="50px"
+ android:padding="10px">
+ <TextView
+ android:id="@+id/txtItemS"
+ android:layout_width="250px"
+ android:layout_height="30px"
+ android:textSize="20px"
+
+ />
+
+ <ImageView android:src="@drawable/rems"
+ android:layout_width="30px"
+ android:layout_height="30px"
+
+ />
+</LinearLayout> \ No newline at end of file