Advertisement
Guest User

Untitled

a guest
Jul 8th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.00 KB | None | 0 0
  1. //activity_main.xml file -
  2.  
  3. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    android:orientation="horizontal" >
  8.  
  9.     <EditText android:id="@+id/text_message"
  10.     android:layout_weight="1"
  11.     android:layout_width="0dp"
  12.     android:layout_height="wrap_content"
  13.     android:hint="@string/text_message" />
  14.    
  15.     <Button android:layout_height="wrap_content"
  16.     android:layout_width="wrap_content"
  17.     android:text="@string/send_button" />
  18.    
  19. </LinearLayout>
  20.  
  21. //strings.xml file -
  22. <resources>
  23.  
  24.     <string name="app_name">CheckApp</string>
  25.     <string name="hello_world">Hello world!</string>
  26.     <string name="menu_settings">Settings</string>
  27.     <string name="text_message">Write something</string>
  28.     <string name="send_button">Send</string>
  29.     <string name="title_activity_main">MainActivity</string>
  30.  
  31. </resources>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement