hendroprwk08

Untitled

Aug 20th, 2020 (edited)
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 6.74 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout
  3.    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:id="@+id/main_layout_id"
  8.    tools:context=".MainActivity">
  9.  
  10.     <ScrollView
  11.        android:layout_width="match_parent"
  12.        android:layout_height="match_parent">
  13.  
  14.         <LinearLayout
  15.            android:layout_width="match_parent"
  16.            android:layout_height="match_parent"
  17.            android:orientation="vertical"
  18.            android:padding="10dp">
  19.  
  20.             <TextView
  21.                android:layout_width="match_parent"
  22.                android:layout_height="wrap_content"
  23.                android:text="Registrasi"
  24.                android:textAppearance="@style/Base.TextAppearance.AppCompat.Large"
  25.                android:layout_marginBottom="30dp"/>
  26.  
  27.             <TextView
  28.                android:layout_width="match_parent"
  29.                android:layout_height="wrap_content"
  30.                android:text="Nama Lengkap"/>
  31.  
  32.             <EditText
  33.                android:layout_width="match_parent"
  34.                android:layout_height="wrap_content"
  35.                android:hint="Nama lengkap"
  36.                android:id="@+id/et_nama"/>
  37.  
  38.             <TextView
  39.                android:layout_width="match_parent"
  40.                android:layout_height="wrap_content"
  41.                android:text="Nomer Pokok Mahasiswa"/>
  42.  
  43.             <EditText
  44.                android:layout_width="match_parent"
  45.                android:layout_height="wrap_content"
  46.                android:hint="NPM"
  47.                android:id="@+id/et_npm"/>
  48.  
  49.             <TextView
  50.                android:layout_width="match_parent"
  51.                android:layout_height="wrap_content"
  52.                android:text="Alamat domisili sesuai kartu identitas"/>
  53.  
  54.             <EditText
  55.                android:inputType="textMultiLine"
  56.                android:lines="3"
  57.                android:gravity="top|left"
  58.                android:layout_width="match_parent"
  59.                android:layout_height="wrap_content"
  60.                android:hint="Alamat"
  61.                android:id="@+id/et_alamat"/>
  62.  
  63.             <TextView
  64.                android:layout_width="match_parent"
  65.                android:layout_height="wrap_content"
  66.                android:text="Program Studi"/>
  67.  
  68.             <Spinner
  69.                android:layout_width="wrap_content"
  70.                android:layout_height="wrap_content"
  71.                android:entries="@array/prodi"
  72.                android:id="@+id/sp_prodi"
  73.                android:padding="15dp"/>
  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:checked="true"
  90.                    android:text="Dalam Kota"/>
  91.  
  92.                 <RadioButton
  93.                    android:id="@+id/rb_LK"
  94.                    android:layout_width="wrap_content"
  95.                    android:layout_height="wrap_content"
  96.                    android:checked="true"
  97.                    android:text="Luar Kota" />
  98.  
  99.             </RadioGroup>
  100.  
  101.             <TextView
  102.                android:layout_width="match_parent"
  103.                android:layout_height="wrap_content"
  104.                android:text="Hobi"/>
  105.  
  106.             <CheckBox
  107.                android:id="@+id/cb_teknologi"
  108.                android:layout_width="match_parent"
  109.                android:layout_height="wrap_content"
  110.                android:text="Teknologi"/>
  111.  
  112.             <CheckBox
  113.                android:id="@+id/cb_kuliner"
  114.                android:layout_width="match_parent"
  115.                android:layout_height="wrap_content"
  116.                android:text="Kuliner"
  117.                android:layout_marginBottom="20dp"/>
  118.  
  119.             <Button
  120.                android:layout_width="match_parent"
  121.                android:layout_height="wrap_content"
  122.                android:backgroundTint="@android:color/holo_orange_light"
  123.                android:text="LIHAT DETIL"
  124.                android:id="@+id/bt_detil"/>
  125.  
  126.             <LinearLayout
  127.                android:layout_width="match_parent"
  128.                android:layout_height="match_parent"
  129.                android:orientation="horizontal">
  130.  
  131.                 <Button
  132.                    android:layout_width="match_parent"
  133.                    android:layout_height="wrap_content"
  134.                    android:backgroundTint="@color/colorAccent"
  135.                    android:textColor="#fff"
  136.                    android:hint="TOAST"
  137.                    android:layout_weight="1"
  138.                    android:id="@+id/bt_toast"/>
  139.  
  140.                 <Button
  141.                    android:layout_width="match_parent"
  142.                    android:layout_height="wrap_content"
  143.                    android:backgroundTint="@android:color/holo_green_light"
  144.                    android:textColor="#fff"
  145.                    android:hint="DIALOG"
  146.                    android:layout_weight="1"
  147.                    android:id="@+id/bt_dialog" />
  148.  
  149.             </LinearLayout>
  150.  
  151.             <LinearLayout
  152.                android:layout_width="match_parent"
  153.                android:layout_height="match_parent"
  154.                android:orientation="horizontal">
  155.  
  156.                 <Button
  157.                    android:layout_width="match_parent"
  158.                    android:layout_height="wrap_content"
  159.                    android:hint="NOTIFIKASI"
  160.                    android:id="@+id/bt_notif"
  161.                    android:layout_weight="1"/>
  162.  
  163.                 <Button
  164.                    android:layout_width="match_parent"
  165.                    android:layout_height="wrap_content"
  166.                    android:hint="SNACK BAR"
  167.                    android:id="@+id/bt_snack"
  168.                    android:layout_weight="1"/>
  169.  
  170.                 <Button
  171.                    android:layout_width="match_parent"
  172.                    android:layout_height="wrap_content"
  173.                    android:hint="KELUAR"
  174.                    android:id="@+id/bt_keluar"
  175.                    android:layout_weight="1"/>
  176.  
  177.             </LinearLayout>
  178.  
  179.         </LinearLayout>
  180.     </ScrollView>
  181.  
  182. </androidx.constraintlayout.widget.ConstraintLayout>
Add Comment
Please, Sign In to add comment