Advertisement
Guest User

activity_my.xml

a guest
Jan 21st, 2015
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="horizontal" >
  6.  
  7. <!-- text field -->
  8. <EditText android:id="@+id/edit_message"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:hint="@string/edit_message" />
  12.  
  13. <!-- create button -->
  14. <Button
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:text="@string/button_send"
  18. android:onClick="sendMessage" />
  19. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement