Sample app to learn android programming (and the IDE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

18 lines
648 B

13 years ago
13 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="horizontal"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent" >
  6. <EditText
  7. android:id="@+id/edit_message"
  8. android:layout_weight="1"
  9. android:layout_width="0dp"
  10. android:layout_height="wrap_content"
  11. android:hint="@string/edit_message" />
  12. <Button
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:text="@string/button_send"
  16. android:onClick="sendMessage" />
  17. </LinearLayout>