diff options
Diffstat (limited to '')
3 files changed, 17 insertions, 0 deletions
diff --git a/branches/sca-java-1.5/samples/calculator-android/res/drawable/icon.png b/branches/sca-java-1.5/samples/calculator-android/res/drawable/icon.png Binary files differnew file mode 100644 index 0000000000..75024841d3 --- /dev/null +++ b/branches/sca-java-1.5/samples/calculator-android/res/drawable/icon.png diff --git a/branches/sca-java-1.5/samples/calculator-android/res/layout/main.xml b/branches/sca-java-1.5/samples/calculator-android/res/layout/main.xml new file mode 100644 index 0000000000..3a5f117d3c --- /dev/null +++ b/branches/sca-java-1.5/samples/calculator-android/res/layout/main.xml @@ -0,0 +1,12 @@ +<?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" + > +<TextView + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="@string/hello" + /> +</LinearLayout> diff --git a/branches/sca-java-1.5/samples/calculator-android/res/values/strings.xml b/branches/sca-java-1.5/samples/calculator-android/res/values/strings.xml new file mode 100644 index 0000000000..71052e74b8 --- /dev/null +++ b/branches/sca-java-1.5/samples/calculator-android/res/values/strings.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="hello">Hello World, CalculatorClient</string> + <string name="app_name">Calculator</string> +</resources> |