Advertisement
Guest User

Untitled

a guest
Jan 25th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 7.51 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView
  3.     android:layout_width="fill_parent"
  4.     android:layout_height="fill_parent"
  5.     xmlns:android="http://schemas.android.com/apk/res/android">
  6. <LinearLayout
  7.     xmlns:tools="http://schemas.android.com/tools"
  8.     android:layout_width="match_parent"
  9.     android:layout_height="match_parent"
  10.     android:paddingBottom="@dimen/activity_vertical_margin"
  11.     android:paddingLeft="@dimen/activity_horizontal_margin"
  12.     android:orientation="vertical"
  13.     android:paddingRight="@dimen/activity_horizontal_margin"
  14.     android:paddingTop="@dimen/activity_vertical_margin"
  15.     tools:context="com.example.darylx.bukutabungan.Buku">
  16.     <ImageView
  17.         android:layout_width="wrap_content"
  18.         android:layout_height="wrap_content"
  19.         android:src="@drawable/tb"
  20.         android:layout_gravity="center"/>
  21.     <TextView
  22.         android:layout_width="wrap_content"
  23.         android:layout_height="match_parent"
  24.         android:text="Buku Tabungan Peserta Didik"
  25.         android:layout_gravity="center"
  26.         android:textColor="#000"
  27.         android:layout_marginTop="10dp"
  28.         android:textSize="25sp"/>
  29.  
  30.     <LinearLayout
  31.         android:layout_width="match_parent"
  32.         android:layout_height="wrap_content"
  33.         android:orientation="horizontal"
  34.         android:layout_marginTop="5dp"
  35.         android:layout_marginBottom="5dp">
  36.  
  37.         <TextView
  38.             android:textSize="17sp"
  39.             android:textColor="#000"
  40.             android:layout_width="0dp"
  41.             android:layout_height="wrap_content"
  42.             android:layout_weight="1.1"
  43.             android:text="Nama Penabung"/>
  44.  
  45.         <EditText
  46.             android:layout_width="0dp"
  47.             android:id="@+id/et1"
  48.             android:layout_height="wrap_content"
  49.             android:layout_weight="1.5"/>
  50.  
  51.     </LinearLayout>
  52.  
  53.     <LinearLayout
  54.         android:layout_width="match_parent"
  55.         android:layout_height="wrap_content"
  56.         android:orientation="horizontal"
  57.         android:layout_marginTop="5dp"
  58.         android:layout_marginBottom="5dp">
  59.  
  60.         <TextView
  61.             android:textSize="17sp"
  62.             android:textColor="#000"
  63.             android:layout_width="0dp"
  64.             android:layout_height="wrap_content"
  65.             android:layout_weight="1.1"
  66.             android:text="Tempat Tgl.Lahir"/>
  67.  
  68.         <EditText
  69.             android:id="@+id/et2"
  70.             android:layout_width="0dp"
  71.             android:layout_height="wrap_content"
  72.             android:layout_weight="1.5"/>
  73.  
  74.     </LinearLayout>
  75.  
  76.     <LinearLayout
  77.         android:layout_width="match_parent"
  78.         android:layout_height="wrap_content"
  79.         android:orientation="horizontal"
  80.         android:layout_marginTop="5dp"
  81.         android:layout_marginBottom="5dp">
  82.  
  83.         <TextView
  84.             android:textSize="17sp"
  85.             android:textColor="#000"
  86.             android:layout_width="0dp"
  87.             android:layout_height="wrap_content"
  88.             android:layout_weight="1.1"
  89.             android:text="NIPD/NISN"/>
  90.  
  91.         <EditText
  92.             android:id="@+id/et3"
  93.             android:layout_width="0dp"
  94.             android:layout_height="wrap_content"
  95.             android:layout_weight="1.5"/>
  96.  
  97.     </LinearLayout>
  98.  
  99.     <LinearLayout
  100.         android:layout_width="match_parent"
  101.         android:layout_height="wrap_content"
  102.         android:orientation="horizontal"
  103.         android:layout_marginTop="5dp"
  104.         android:layout_marginBottom="5dp">
  105.  
  106.         <TextView
  107.             android:textSize="17sp"
  108.             android:textColor="#000"
  109.             android:layout_width="0dp"
  110.             android:layout_height="wrap_content"
  111.             android:layout_weight="1.1"
  112.             android:text="Kelas/Tingat"/>
  113.  
  114.         <EditText
  115.             android:id="@+id/et4"
  116.             android:layout_width="0dp"
  117.             android:layout_height="wrap_content"
  118.             android:layout_weight="1.5"/>
  119.  
  120.     </LinearLayout>
  121.  
  122.     <LinearLayout
  123.         android:layout_width="match_parent"
  124.         android:layout_height="wrap_content"
  125.         android:orientation="horizontal"
  126.         android:layout_marginTop="5dp"
  127.         android:layout_marginBottom="5dp">
  128.  
  129.         <TextView
  130.             android:textSize="17sp"
  131.             android:textColor="#000"
  132.             android:layout_width="0dp"
  133.             android:layout_height="wrap_content"
  134.             android:layout_weight="1.1"
  135.             android:text="Tabungan Perhari"/>
  136.  
  137.         <EditText
  138.             android:id="@+id/et5"
  139.             android:layout_width="0dp"
  140.             android:layout_height="wrap_content"
  141.             android:layout_weight="1.5"/>
  142.  
  143.     </LinearLayout>
  144.  
  145.     <LinearLayout
  146.         android:layout_width="match_parent"
  147.         android:layout_height="wrap_content"
  148.         android:orientation="horizontal"
  149.         android:layout_marginTop="5dp"
  150.         android:layout_marginBottom="5dp">
  151.  
  152.         <TextView
  153.             android:layout_width="0dp"
  154.             android:textSize="17sp"
  155.             android:textColor="#000"
  156.             android:layout_height="wrap_content"
  157.             android:layout_weight="1.1"
  158.             android:text="Agama"/>
  159.  
  160.         <EditText
  161.             android:id="@+id/et6"
  162.             android:layout_width="0dp"
  163.             android:layout_height="wrap_content"
  164.             android:layout_weight="1.5"/>
  165.  
  166.     </LinearLayout>
  167.  
  168.     <LinearLayout
  169.         android:layout_width="match_parent"
  170.         android:layout_height="wrap_content"
  171.         android:orientation="horizontal"
  172.         android:layout_marginTop="5dp"
  173.         android:layout_marginBottom="5dp">
  174.  
  175.         <TextView
  176.             android:layout_width="0dp"
  177.             android:textSize="17sp"
  178.             android:textColor="#000"
  179.             android:layout_height="wrap_content"
  180.             android:layout_weight="1.1"
  181.             android:text="Nama Orang Tua"/>
  182.  
  183.         <EditText
  184.             android:id="@+id/et7"
  185.             android:layout_width="0dp"
  186.             android:layout_height="wrap_content"
  187.             android:layout_weight="1.5"/>
  188.  
  189.     </LinearLayout>
  190.  
  191.     <LinearLayout
  192.         android:layout_width="match_parent"
  193.         android:layout_height="wrap_content"
  194.         android:orientation="horizontal"
  195.         android:layout_marginTop="5dp"
  196.         android:layout_marginBottom="5dp">
  197.  
  198.         <TextView
  199.             android:layout_width="0dp"
  200.             android:layout_height="wrap_content"
  201.             android:layout_weight="1.1"
  202.             android:textSize="17sp"
  203.             android:textColor="#000"
  204.             android:text="Alamat"/>
  205.  
  206.         <EditText
  207.             android:id="@+id/et8"
  208.             android:layout_width="0dp"
  209.             android:layout_height="wrap_content"
  210.             android:layout_weight="1.5"/>
  211.  
  212.     </LinearLayout>
  213.  
  214.     <LinearLayout
  215.         android:layout_width="match_parent"
  216.         android:layout_height="wrap_content"
  217.         android:orientation="horizontal"
  218.         android:layout_marginTop="5dp"
  219.         android:layout_marginBottom="5dp">
  220.  
  221.         <TextView
  222.             android:layout_width="0dp"
  223.             android:layout_height="wrap_content"
  224.             android:layout_weight="1.1"
  225.             android:textSize="17sp"
  226.             android:textColor="#000"
  227.             android:text="Wali Kelas"/>
  228.  
  229.         <EditText
  230.             android:id="@+id/et9"
  231.             android:layout_width="0dp"
  232.             android:layout_height="wrap_content"
  233.             android:layout_weight="1.5"/>
  234.  
  235.     </LinearLayout>
  236.  
  237. </LinearLayout>
  238. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement