Advertisement
sigitsuryono25

tentang.xml

Feb 9th, 2021
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout 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. tools:context=".TentangAplikasi">
  8.  
  9. <ImageView
  10. android:layout_centerHorizontal="true"
  11. android:id="@+id/gambarProfil"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. app:srcCompat="@mipmap/ic_launcher" />
  15.  
  16. <LinearLayout
  17. android:layout_below="@id/gambarProfil"
  18. android:layout_width="match_parent"
  19. android:orientation="vertical"
  20. android:layout_height="wrap_content">
  21.  
  22. <TextView
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:text="Sigit Suryono"
  26. android:padding="8dp"
  27. android:textSize="17sp"
  28. android:textColor="@android:color/black"
  29. android:gravity="center"/>
  30.  
  31. <TextView
  32. android:layout_width="match_parent"
  33. android:layout_height="wrap_content"
  34. android:text="PT. Lauwba Techno Indonesia"
  35. android:textSize="15sp"
  36. android:textColor="@android:color/black"
  37. android:gravity="center"/>
  38.  
  39. <TextView
  40. android:layout_width="match_parent"
  41. android:layout_height="wrap_content"
  42. android:text="https://t.me/sigitsuryono25"
  43. android:textSize="15sp"
  44. android:textColor="@android:color/black"
  45. android:gravity="center"
  46. android:padding="8dp"
  47. />
  48.  
  49. </LinearLayout>
  50. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement