hendroprwk08

Untitled

Aug 23rd, 2020
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.77 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=".DetailActivity"
  9.    android:padding="20dp">
  10.  
  11.     <TextView
  12.        android:layout_width="match_parent"
  13.        android:layout_height="wrap_content"
  14.        android:text="Registrasi diterima"
  15.        android:textAppearance="@style/Base.TextAppearance.AppCompat.Large"/>
  16.  
  17.     <TextView
  18.        android:layout_width="match_parent"
  19.        android:layout_height="wrap_content"
  20.        android:text="Data yang tertera dibawah ini telah melakukan verifikasi"
  21.        android:layout_marginBottom="20dp"/>
  22.  
  23.     <TextView
  24.        android:layout_width="match_parent"
  25.        android:layout_height="wrap_content"
  26.        android:text="Nama lengkap"/>
  27.  
  28.     <TextView
  29.        android:layout_width="match_parent"
  30.        android:layout_height="wrap_content"
  31.        android:id="@+id/tv_nama"
  32.        android:text="Nama lengkap"
  33.        android:textAppearance="@style/TextAppearance.AppCompat.Large"
  34.        android:layout_marginBottom="10dp"/>
  35.  
  36.     <TextView
  37.        android:layout_width="match_parent"
  38.        android:layout_height="wrap_content"
  39.        android:text="Alamat"/>
  40.  
  41.     <TextView
  42.        android:layout_width="match_parent"
  43.        android:layout_height="wrap_content"
  44.        android:id="@+id/tv_alamat"
  45.        android:text="Alamat"
  46.        android:textAppearance="@style/TextAppearance.AppCompat.Large"
  47.        android:layout_marginBottom="10dp"/>
  48.  
  49.     <TextView
  50.        android:layout_width="match_parent"
  51.        android:layout_height="wrap_content"
  52.        android:text="NPM"/>
  53.  
  54.     <TextView
  55.        android:layout_width="match_parent"
  56.        android:layout_height="wrap_content"
  57.        android:id="@+id/tv_npm"
  58.        android:text="NPM"
  59.        android:textAppearance="@style/TextAppearance.AppCompat.Large"
  60.        android:layout_marginBottom="10dp"/>
  61.  
  62.     <TextView
  63.        android:layout_width="match_parent"
  64.        android:layout_height="wrap_content"
  65.        android:text="Program Studi"/>
  66.  
  67.     <TextView
  68.        android:layout_width="match_parent"
  69.        android:layout_height="wrap_content"
  70.        android:id="@+id/tv_prodi"
  71.        android:text="Program Studi"
  72.        android:textAppearance="@style/TextAppearance.AppCompat.Large"
  73.        android:layout_marginBottom="10dp"/>
  74.  
  75.     <TextView
  76.        android:layout_width="match_parent"
  77.        android:layout_height="wrap_content"
  78.        android:text="Domisili"/>
  79.  
  80.     <RadioGroup
  81.        android:id="@+id/rg_domisili"
  82.        android:layout_width="match_parent"
  83.        android:layout_height="wrap_content">
  84.  
  85.         <RadioButton
  86.            android:layout_width="wrap_content"
  87.            android:layout_height="wrap_content"
  88.            android:id="@+id/rb_DK"
  89.            android:text="Dalam Kota"/>
  90.  
  91.         <RadioButton
  92.            android:layout_width="wrap_content"
  93.            android:layout_height="wrap_content"
  94.            android:id="@+id/rb_LK"
  95.            android:text="Luar Kota"/>
  96.  
  97.     </RadioGroup>
  98.  
  99.     <TextView
  100.        android:layout_width="match_parent"
  101.        android:layout_height="wrap_content"
  102.        android:text="Hobi"/>
  103.  
  104.     <CheckBox
  105.        android:id="@+id/cb_teknologi"
  106.        android:layout_width="match_parent"
  107.        android:layout_height="wrap_content"
  108.        android:text="Teknologi"/>
  109.  
  110.     <CheckBox
  111.        android:id="@+id/cb_kuliner"
  112.        android:layout_width="match_parent"
  113.        android:layout_height="wrap_content"
  114.        android:text="Kuliner"/>
  115.  
  116. </LinearLayout>
Add Comment
Please, Sign In to add comment