Advertisement
Putra-Kun123

edit.xml

Feb 23rd, 2020
8,884
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical" >
  6.  
  7. <TextView
  8. android:id="@+id/textView1"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:text="Judul Catatan"
  12. android:textAppearance="?android:attr/textAppearanceMedium"
  13. android:textColor="#FF7F00"
  14. android:textSize="30dp" />
  15.  
  16. <EditText
  17. android:id="@+id/edjudul"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content" >
  20.  
  21. <requestFocus />
  22. </EditText>
  23.  
  24. <TextView
  25. android:id="@+id/textView2"
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:text="Isi Catatan"
  29. android:textAppearance="?android:attr/textAppearanceMedium"
  30. android:textColor="#FFFFFF"
  31. android:textSize="20dp" />
  32.  
  33. <EditText
  34. android:id="@+id/edisi"
  35. android:layout_width="match_parent"
  36. android:layout_height="300dp" />
  37.  
  38. <LinearLayout
  39. android:id="@+id/linearLayout1"
  40. android:layout_width="match_parent"
  41. android:layout_height="wrap_content"
  42. android:gravity="center" >
  43.  
  44. <Button
  45. android:id="@+id/btnedit"
  46. android:layout_width="115dp"
  47. android:layout_height="80dp"
  48. android:text="Edit"
  49. android:textSize="25dp" />
  50.  
  51. <Button
  52. android:id="@+id/btnhapus"
  53. android:layout_width="115dp"
  54. android:layout_height="80dp"
  55. android:text="Hapus"
  56. android:textSize="25dp" />
  57. </LinearLayout>
  58.  
  59. </LinearLayout>
  60.  
  61. //find me on instagram : harymalau
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement