Started working on API demo app

This commit is contained in:
Dominik
2012-03-22 20:38:50 +01:00
parent ea39b14bf5
commit 428a9c5396
17 changed files with 741 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

@@ -0,0 +1,13 @@
<?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" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="send Intent" />
</LinearLayout>

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<PreferenceCategory android:title="Intent Demos" >
<Preference
android:key="intent_demo_1"
android:title="Intent Demo 1" />
<Preference
android:key="intent_demo_2"
android:title="Intent Demo 2" />
</PreferenceCategory>
<PreferenceCategory android:title="AIDL Demos" >
<Preference
android:key="aidl_demo"
android:title="AIDL Demo 1" />
</PreferenceCategory>
</PreferenceScreen>