summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/samples/store-android/res/layout
diff options
context:
space:
mode:
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