Hi, I don't know about iPhone, but in Android you can add a button in your layout, something like this:
<?xml version="1.0" encoding="utf-8"?> <AbsoluteLayout android:id="@+id/widget0" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" > <RelativeLayout android:id="@+id/widget28" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_x="54px" android:layout_y="52px" > <Button android:id="@+id/widget30" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button" android:layout_alignBaseline="@+id/widget29" android:layout_toRightOf="@+id/widget29" > </Button> <AutoCompleteTextView android:id="@+id/widget29" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="AutoComplete" android:textSize="18sp" android:layout_alignParentTop="true" android:layout_alignParentLeft="true" > </AutoCompleteTextView> </RelativeLayout> </AbsoluteLayout> Hope this helps! Pierluigi -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en To unsubscribe, reply using "remove me" as the subject.

