Advertisement
Guest User

Untitled

a guest
May 27th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. tools:context=".MainActivity">
  9.  
  10. <EditText
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:id="@+id/etBroj"
  14. android:inputType="phone"
  15. />
  16.  
  17. <EditText
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:inputType="textMultiLine"
  21. android:lines="7"
  22. android:id="@+id/etPoruka"
  23. />
  24.  
  25. <Button
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:text="Prepare SMS"
  29. android:id="@+id/bPrepareSms"
  30. />
  31.  
  32. <Button
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content"
  35. android:id="@+id/bSendSms"
  36. android:text="Send SMS"
  37. />
  38.  
  39. <Button
  40. android:layout_width="wrap_content"
  41. android:layout_height="wrap_content"
  42. android:text="Dial"
  43. android:id="@+id/bDial"
  44. />
  45.  
  46. <Button
  47. android:layout_width="wrap_content"
  48. android:layout_height="wrap_content"
  49. android:id="@+id/bCall"
  50. android:text="Call"
  51. />
  52.  
  53. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement