Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 14.41 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:layout_margin="10dp"
  8.    android:background="@color/abu1"
  9.    android:orientation="vertical"
  10.    tools:context="compas.aplikasi.tofik.com.bukutabungan.MainActivity"
  11.    tools:showIn="@layout/activity_main">
  12.  
  13.     <ImageView
  14.        android:layout_width="match_parent"
  15.        android:layout_height="100dp"
  16.        android:src="@drawable/smk"
  17.        tools:ignore="ContentDescription" />
  18.  
  19.     <TextView
  20.        style="@style/Base.Widget.AppCompat.Button.Borderless.Colored"
  21.        android:layout_width="match_parent"
  22.        android:layout_height="wrap_content"
  23.        android:text="@string/tabungan"
  24.        android:textAlignment="center"
  25.        android:textColor="#000"
  26.        android:textSize="30sp" />
  27.  
  28.     <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  29.        android:layout_width="fill_parent"
  30.        android:layout_height="fill_parent">
  31.  
  32.         <LinearLayout
  33.            android:layout_width="match_parent"
  34.            android:layout_height="wrap_content"
  35.            android:orientation="vertical"
  36.            android:paddingLeft="10dp"
  37.            android:paddingRight="10dp">
  38.  
  39.             <LinearLayout
  40.                android:layout_width="match_parent"
  41.                android:layout_height="wrap_content"
  42.                android:orientation="horizontal">
  43.  
  44.                 <TextView
  45.                    android:layout_width="171dp"
  46.                    android:layout_height="wrap_content"
  47.                    android:text="@string/nama"
  48.                    android:textColor="#000"
  49.                    android:textSize="15sp" />
  50.  
  51.                 <TextView
  52.                    android:layout_width="4dp"
  53.                    android:layout_height="wrap_content"
  54.                    android:text="@string/sama_dengan"
  55.                    android:textColor="#000"
  56.                    android:textSize="15sp" />
  57.  
  58.                 <com.rengwuxian.materialedittext.MaterialEditText
  59.                    android:id="@+id/nama"
  60.                    android:layout_width="match_parent"
  61.                    android:layout_height="wrap_content"
  62.                    android:hint="@string/muhammad_tofik"
  63.                    android:inputType="textPersonName"
  64.                    android:textSize="16sp"
  65.                    app:met_floatingLabel="highlight" />
  66.             </LinearLayout>
  67.  
  68.             <LinearLayout
  69.                android:layout_width="match_parent"
  70.                android:layout_height="wrap_content"
  71.                android:orientation="horizontal">
  72.  
  73.                 <TextView
  74.                    android:layout_width="171dp"
  75.                    android:layout_height="wrap_content"
  76.                    android:inputType="text"
  77.                    android:text="@string/jurusan"
  78.                    android:textColor="#000"
  79.                    android:textSize="15sp" />
  80.  
  81.                 <TextView
  82.                    android:layout_width="4dp"
  83.                    android:layout_height="wrap_content"
  84.                    android:text="@string/sama_dengan"
  85.                    android:textColor="#000"
  86.                    android:textSize="15sp" />
  87.  
  88.                 <com.rengwuxian.materialedittext.MaterialEditText
  89.                    android:id="@+id/jurusan"
  90.                    android:layout_width="match_parent"
  91.                    android:layout_height="wrap_content"
  92.                    android:hint="@string/jrs"
  93.                    android:inputType="textPersonName"
  94.                    android:textSize="16sp"
  95.                    app:met_floatingLabel="highlight" />
  96.             </LinearLayout>
  97.  
  98.  
  99.             <LinearLayout
  100.                android:layout_width="match_parent"
  101.                android:layout_height="wrap_content"
  102.                android:orientation="horizontal">
  103.  
  104.                 <TextView
  105.                    android:layout_width="171dp"
  106.                    android:layout_height="wrap_content"
  107.                    android:text="@string/tempat_tanggal_lahir"
  108.                    android:textColor="#000"
  109.                    android:textSize="15sp" />
  110.  
  111.                 <TextView
  112.                    android:layout_width="4dp"
  113.                    android:layout_height="wrap_content"
  114.                    android:text="@string/sama_dengan"
  115.                    android:textColor="#000"
  116.                    android:textSize="15sp" />
  117.  
  118.                 <com.rengwuxian.materialedittext.MaterialEditText
  119.                    android:id="@+id/tgllahir"
  120.                    android:layout_width="match_parent"
  121.                    android:layout_height="wrap_content"
  122.                    android:hint="@string/tempat_tanggal_lahir"
  123.                    android:inputType="textPersonName"
  124.                    android:textSize="16sp"
  125.                    app:met_floatingLabel="highlight" />
  126.             </LinearLayout>
  127.  
  128.             <LinearLayout
  129.                android:layout_width="match_parent"
  130.                android:layout_height="wrap_content"
  131.                android:orientation="horizontal">
  132.  
  133.                 <TextView
  134.                    android:layout_width="171dp"
  135.                    android:layout_height="wrap_content"
  136.                    android:text="@string/nipd_nisn"
  137.                    android:textColor="#000"
  138.                    android:textSize="15sp" />
  139.  
  140.                 <TextView
  141.                    android:layout_width="4dp"
  142.                    android:layout_height="wrap_content"
  143.                    android:text="@string/sama_dengan"
  144.                    android:textColor="#000"
  145.                    android:textSize="15sp" />
  146.  
  147.                 <com.rengwuxian.materialedittext.MaterialEditText
  148.                    android:id="@+id/nipd"
  149.                    android:layout_width="match_parent"
  150.                    android:layout_height="wrap_content"
  151.                    android:hint="@string/nipd_nisn"
  152.                    android:inputType="textPersonName"
  153.                    android:textSize="16sp"
  154.                    app:met_floatingLabel="highlight" />
  155.             </LinearLayout>
  156.  
  157.             <LinearLayout
  158.                android:layout_width="match_parent"
  159.                android:layout_height="wrap_content"
  160.                android:orientation="horizontal">
  161.  
  162.                 <TextView
  163.                    android:layout_width="171dp"
  164.                    android:layout_height="wrap_content"
  165.                    android:text="@string/kelas"
  166.                    android:textColor="#000"
  167.                    android:textSize="15sp" />
  168.  
  169.                 <TextView
  170.                    android:layout_width="4dp"
  171.                    android:layout_height="wrap_content"
  172.                    android:text="@string/sama_dengan"
  173.                    android:textColor="#000"
  174.                    android:textSize="15sp" />
  175.  
  176.                 <com.rengwuxian.materialedittext.MaterialEditText
  177.                    android:id="@+id/kelas"
  178.                    android:layout_width="match_parent"
  179.                    android:layout_height="wrap_content"
  180.                    android:hint="@string/kelas"
  181.                    android:inputType="textPersonName"
  182.                    android:textSize="16sp"
  183.                    app:met_floatingLabel="highlight" />
  184.             </LinearLayout>
  185.  
  186.             <LinearLayout
  187.                android:layout_width="match_parent"
  188.                android:layout_height="wrap_content"
  189.                android:orientation="horizontal">
  190.  
  191.                 <TextView
  192.                    android:layout_width="171dp"
  193.                    android:layout_height="wrap_content"
  194.                    android:text="@string/tabungan_perhari"
  195.                    android:textColor="#000"
  196.                    android:textSize="15sp" />
  197.  
  198.                 <TextView
  199.                    android:layout_width="4dp"
  200.                    android:layout_height="wrap_content"
  201.                    android:text="@string/sama_dengan"
  202.                    android:textColor="#000"
  203.                    android:textSize="15sp" />
  204.  
  205.                 <com.rengwuxian.materialedittext.MaterialEditText
  206.                    android:layout_width="match_parent"
  207.                    android:layout_height="wrap_content"
  208.                    android:hint="@string/tabungan_perhari"
  209.                    android:inputType="textPersonName"
  210.                    android:textSize="16sp"
  211.                    app:met_floatingLabel="highlight" />
  212.             </LinearLayout>
  213.  
  214.             <LinearLayout
  215.                android:layout_width="match_parent"
  216.                android:layout_height="wrap_content"
  217.                android:orientation="horizontal">
  218.  
  219.                 <TextView
  220.                    android:layout_width="171dp"
  221.                    android:layout_height="wrap_content"
  222.                    android:text="@string/agama"
  223.                    android:textColor="#000"
  224.                    android:textSize="15sp" />
  225.  
  226.                 <TextView
  227.                    android:layout_width="4dp"
  228.                    android:layout_height="wrap_content"
  229.                    android:text="@string/sama_dengan"
  230.                    android:textColor="#000"
  231.                    android:textSize="15sp" />
  232.  
  233.                 <com.rengwuxian.materialedittext.MaterialEditText
  234.                    android:id="@+id/agama"
  235.                    android:layout_width="match_parent"
  236.                    android:layout_height="wrap_content"
  237.                    android:hint="@string/agama"
  238.                    android:inputType="textPersonName"
  239.                    android:textSize="16sp"
  240.                    app:met_floatingLabel="highlight" />
  241.             </LinearLayout>
  242.  
  243.             <LinearLayout
  244.                android:layout_width="match_parent"
  245.                android:layout_height="wrap_content"
  246.                android:orientation="horizontal">
  247.  
  248.                 <TextView
  249.                    android:layout_width="171dp"
  250.                    android:layout_height="wrap_content"
  251.                    android:text="@string/nama_orang_tua"
  252.                    android:textColor="#000"
  253.                    android:textSize="15sp" />
  254.  
  255.                 <TextView
  256.                    android:layout_width="4dp"
  257.                    android:layout_height="wrap_content"
  258.                    android:text="@string/sama_dengan"
  259.                    android:textColor="#000"
  260.                    android:textSize="15sp" />
  261.  
  262.                 <com.rengwuxian.materialedittext.MaterialEditText
  263.                    android:id="@+id/ortu"
  264.                    android:layout_width="match_parent"
  265.                    android:layout_height="wrap_content"
  266.                    android:hint="@string/nama_orang_tua"
  267.                    android:inputType="textPersonName"
  268.                    android:textSize="16sp"
  269.                    app:met_floatingLabel="highlight" />
  270.             </LinearLayout>
  271.  
  272.             <LinearLayout
  273.                android:layout_width="match_parent"
  274.                android:layout_height="wrap_content"
  275.                android:orientation="horizontal">
  276.  
  277.                 <TextView
  278.                    android:layout_width="171dp"
  279.                    android:layout_height="wrap_content"
  280.                    android:text="@string/alamat"
  281.                    android:textColor="#000"
  282.                    android:textSize="15sp" />
  283.  
  284.                 <TextView
  285.                    android:layout_width="4dp"
  286.                    android:layout_height="wrap_content"
  287.                    android:text="@string/sama_dengan"
  288.                    android:textColor="#000"
  289.                    android:textSize="15sp" />
  290.  
  291.                 <com.rengwuxian.materialedittext.MaterialEditText
  292.                    android:id="@+id/alamat"
  293.                    android:layout_width="match_parent"
  294.                    android:layout_height="wrap_content"
  295.                    android:hint="@string/alamat"
  296.                    android:inputType="textPersonName"
  297.                    android:textSize="16sp"
  298.                    app:met_floatingLabel="highlight" />
  299.             </LinearLayout>
  300.  
  301.             <LinearLayout
  302.                android:layout_width="match_parent"
  303.                android:layout_height="wrap_content"
  304.                android:orientation="horizontal">
  305.  
  306.                 <TextView
  307.                    android:layout_width="171dp"
  308.                    android:layout_height="wrap_content"
  309.                    android:text="@string/wali_kelas"
  310.                    android:textColor="#000"
  311.                    android:textSize="15sp" />
  312.  
  313.                 <TextView
  314.                    android:layout_width="4dp"
  315.                    android:layout_height="wrap_content"
  316.                    android:text="@string/sama_dengan"
  317.                    android:textColor="#000"
  318.                    android:textSize="15sp" />
  319.  
  320.                 <com.rengwuxian.materialedittext.MaterialEditText
  321.                    android:layout_width="match_parent"
  322.                    android:layout_height="wrap_content"
  323.                    android:hint="@string/agus_diana"
  324.                    android:inputType="textPersonName"
  325.                    android:textSize="16sp"
  326.                    app:met_floatingLabel="highlight" />
  327.             </LinearLayout>
  328.  
  329.             <LinearLayout
  330.                android:layout_width="match_parent"
  331.                android:layout_height="wrap_content"
  332.                android:paddingLeft="5dp"
  333.                android:paddingRight="5dp">
  334.  
  335.                 <LinearLayout
  336.                    android:layout_width="match_parent"
  337.                    android:layout_height="wrap_content"
  338.                    android:background="@color/abu"
  339.                    android:orientation="horizontal"
  340.                    tools:ignore="UselessParent">
  341.  
  342.                     <TextView
  343.                        android:layout_width="match_parent"
  344.                        android:layout_height="wrap_content"
  345.                        android:text="@string/Paket_keahlian"
  346.                        android:textAlignment="center"
  347.                        android:textColor="#000"
  348.                        android:textSize="11sp" />
  349.                 </LinearLayout>
  350.             </LinearLayout>
  351.         </LinearLayout>
  352.     </ScrollView>
  353. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement