Advertisement
armadiazrino

activity_detail

Feb 11th, 2018
361
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 11.44 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView 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_margin="8dp"
  7.    android:layout_height="match_parent">
  8.  
  9.     <LinearLayout
  10.        android:orientation="vertical"
  11.        android:layout_width="match_parent"
  12.        android:layout_height="wrap_content">
  13.  
  14.         <ImageView
  15.            android:layout_width="match_parent"
  16.            android:layout_height="125dp"
  17.            android:src="@mipmap/ic_launcher_round" />
  18.  
  19.         <LinearLayout
  20.            android:layout_width="match_parent"
  21.            android:layout_height="wrap_content"
  22.            android:orientation="horizontal">
  23.  
  24.             <ImageView
  25.                android:layout_width="wrap_content"
  26.                android:layout_height="wrap_content"
  27.                android:src="@mipmap/ic_person" />
  28.  
  29.             <LinearLayout
  30.                android:layout_width="match_parent"
  31.                android:layout_height="wrap_content"
  32.                android:orientation="vertical">
  33.  
  34.                 <TextView
  35.                    android:layout_width="match_parent"
  36.                    android:layout_height="wrap_content"
  37.                    android:text="Nama"
  38.                    android:textSize="16sp" />
  39.  
  40.                 <TextView
  41.                    android:id="@+id/tv_nama"
  42.                    android:layout_width="match_parent"
  43.                    android:layout_height="wrap_content"
  44.                    android:text="Rino Armadiaz"
  45.                    android:textSize="18sp"
  46.                    android:textStyle="bold" />
  47.             </LinearLayout>
  48.         </LinearLayout>
  49.  
  50.         <View
  51.            android:layout_width="match_parent"
  52.            android:layout_height="1dp"
  53.            android:layout_marginTop="8dp"
  54.            android:background="@color/colorPrimaryDark" />
  55.  
  56.         <LinearLayout
  57.            android:layout_width="match_parent"
  58.            android:layout_height="wrap_content"
  59.            android:orientation="horizontal">
  60.  
  61.             <ImageView
  62.                android:layout_width="wrap_content"
  63.                android:layout_height="wrap_content"
  64.                android:src="@mipmap/ic_person" />
  65.  
  66.             <LinearLayout
  67.                android:layout_width="match_parent"
  68.                android:layout_height="wrap_content"
  69.                android:orientation="vertical">
  70.  
  71.                 <TextView
  72.                    android:layout_width="match_parent"
  73.                    android:layout_height="wrap_content"
  74.                    android:text="Gender"
  75.                    android:textSize="16sp" />
  76.  
  77.                 <TextView
  78.                    android:id="@+id/tv_gender"
  79.                    android:layout_width="match_parent"
  80.                    android:layout_height="wrap_content"
  81.                    android:text="Pria"
  82.                    android:textSize="18sp"
  83.                    android:textStyle="bold" />
  84.             </LinearLayout>
  85.         </LinearLayout>
  86.  
  87.         <View
  88.            android:layout_width="match_parent"
  89.            android:layout_height="1dp"
  90.            android:layout_marginTop="8dp"
  91.            android:background="@color/colorPrimaryDark" />
  92.  
  93.         <LinearLayout
  94.            android:layout_width="match_parent"
  95.            android:layout_height="wrap_content"
  96.            android:orientation="horizontal">
  97.  
  98.             <ImageView
  99.                android:layout_width="wrap_content"
  100.                android:layout_height="wrap_content"
  101.                android:src="@mipmap/ic_person" />
  102.  
  103.             <LinearLayout
  104.                android:layout_width="match_parent"
  105.                android:layout_height="wrap_content"
  106.                android:orientation="vertical">
  107.  
  108.                 <TextView
  109.                    android:layout_width="match_parent"
  110.                    android:layout_height="wrap_content"
  111.                    android:text="Jenjang"
  112.                    android:textSize="16sp" />
  113.  
  114.                 <TextView
  115.                    android:id="@+id/tv_jenjang"
  116.                    android:layout_width="match_parent"
  117.                    android:layout_height="wrap_content"
  118.                    android:text="SMK"
  119.                    android:textSize="18sp"
  120.                    android:textStyle="bold" />
  121.             </LinearLayout>
  122.         </LinearLayout>
  123.  
  124.         <View
  125.            android:layout_width="match_parent"
  126.            android:layout_height="1dp"
  127.            android:layout_marginTop="8dp"
  128.            android:background="@color/colorPrimaryDark" />
  129.  
  130.         <LinearLayout
  131.            android:layout_width="match_parent"
  132.            android:layout_height="wrap_content"
  133.            android:orientation="horizontal">
  134.  
  135.             <ImageView
  136.                android:layout_width="wrap_content"
  137.                android:layout_height="wrap_content"
  138.                android:src="@mipmap/ic_person" />
  139.  
  140.             <LinearLayout
  141.                android:layout_width="match_parent"
  142.                android:layout_height="wrap_content"
  143.                android:orientation="vertical">
  144.  
  145.                 <TextView
  146.                    android:layout_width="match_parent"
  147.                    android:layout_height="wrap_content"
  148.                    android:text="Hobi"
  149.                    android:textSize="16sp" />
  150.  
  151.                 <TextView
  152.                    android:id="@+id/tv_hobi"
  153.                    android:layout_width="match_parent"
  154.                    android:layout_height="wrap_content"
  155.                    android:text="Membaca"
  156.                    android:textSize="18sp"
  157.                    android:textStyle="bold" />
  158.             </LinearLayout>
  159.         </LinearLayout>
  160.  
  161.         <View
  162.            android:layout_width="match_parent"
  163.            android:layout_height="1dp"
  164.            android:layout_marginTop="8dp"
  165.            android:background="@color/colorPrimaryDark" />
  166.  
  167.         <LinearLayout
  168.            android:layout_width="match_parent"
  169.            android:layout_height="wrap_content"
  170.            android:orientation="horizontal">
  171.  
  172.             <ImageView
  173.                android:layout_width="wrap_content"
  174.                android:layout_height="wrap_content"
  175.                android:src="@mipmap/ic_person" />
  176.  
  177.             <LinearLayout
  178.                android:layout_width="match_parent"
  179.                android:layout_height="wrap_content"
  180.                android:orientation="vertical">
  181.  
  182.                 <TextView
  183.                    android:layout_width="match_parent"
  184.                    android:layout_height="wrap_content"
  185.                    android:text="Tanggal Lahir"
  186.                    android:textSize="16sp" />
  187.  
  188.                 <TextView
  189.                    android:id="@+id/tv_tgl_lahir"
  190.                    android:layout_width="match_parent"
  191.                    android:layout_height="wrap_content"
  192.                    android:text="Rino Armadiaz"
  193.                    android:textSize="18sp"
  194.                    android:textStyle="bold" />
  195.             </LinearLayout>
  196.         </LinearLayout>
  197.  
  198.         <View
  199.            android:layout_width="match_parent"
  200.            android:layout_height="1dp"
  201.            android:layout_marginTop="8dp"
  202.            android:background="@color/colorPrimaryDark" />
  203.  
  204.         <LinearLayout
  205.            android:layout_width="match_parent"
  206.            android:layout_height="wrap_content"
  207.            android:orientation="horizontal">
  208.  
  209.             <ImageView
  210.                android:layout_width="wrap_content"
  211.                android:layout_height="wrap_content"
  212.                android:src="@mipmap/ic_person" />
  213.  
  214.             <LinearLayout
  215.                android:layout_width="match_parent"
  216.                android:layout_height="wrap_content"
  217.                android:orientation="vertical">
  218.  
  219.                 <TextView
  220.                    android:layout_width="match_parent"
  221.                    android:layout_height="wrap_content"
  222.                    android:text="Email"
  223.                    android:textSize="16sp" />
  224.  
  225.                 <TextView
  226.                    android:id="@+id/tv_email"
  227.                    android:layout_width="match_parent"
  228.                    android:layout_height="wrap_content"
  229.                    android:text="rinoyo.armadiaz@gmail.com"
  230.                    android:textSize="18sp"
  231.                    android:textStyle="bold" />
  232.             </LinearLayout>
  233.         </LinearLayout>
  234.  
  235.         <View
  236.            android:layout_width="match_parent"
  237.            android:layout_height="1dp"
  238.            android:layout_marginTop="8dp"
  239.            android:background="@color/colorPrimaryDark" />
  240.  
  241.         <LinearLayout
  242.            android:layout_width="match_parent"
  243.            android:layout_height="wrap_content"
  244.            android:orientation="horizontal">
  245.  
  246.             <ImageView
  247.                android:layout_width="wrap_content"
  248.                android:layout_height="wrap_content"
  249.                android:src="@mipmap/ic_person" />
  250.  
  251.             <LinearLayout
  252.                android:layout_width="match_parent"
  253.                android:layout_height="wrap_content"
  254.                android:orientation="vertical">
  255.  
  256.                 <TextView
  257.                    android:layout_width="match_parent"
  258.                    android:layout_height="wrap_content"
  259.                    android:text="Alamat"
  260.                    android:textSize="16sp" />
  261.  
  262.                 <TextView
  263.                    android:id="@+id/tv_alamat"
  264.                    android:layout_width="match_parent"
  265.                    android:layout_height="wrap_content"
  266.                    android:text="Jakarta"
  267.                    android:textSize="18sp"
  268.                    android:textStyle="bold" />
  269.             </LinearLayout>
  270.         </LinearLayout>
  271.  
  272.         <View
  273.            android:layout_width="match_parent"
  274.            android:layout_height="1dp"
  275.            android:layout_marginTop="8dp"
  276.            android:background="@color/colorPrimaryDark" />
  277.  
  278.         <LinearLayout
  279.            android:layout_width="match_parent"
  280.            android:layout_height="wrap_content"
  281.            android:orientation="horizontal">
  282.  
  283.             <ImageView
  284.                android:layout_width="wrap_content"
  285.                android:layout_height="wrap_content"
  286.                android:src="@mipmap/ic_person" />
  287.  
  288.             <LinearLayout
  289.                android:layout_width="match_parent"
  290.                android:layout_height="wrap_content"
  291.                android:orientation="vertical">
  292.  
  293.                 <TextView
  294.                    android:layout_width="match_parent"
  295.                    android:layout_height="wrap_content"
  296.                    android:text="No Hp"
  297.                    android:textSize="16sp" />
  298.  
  299.                 <TextView
  300.                    android:id="@+id/tv_no_hp"
  301.                    android:layout_width="match_parent"
  302.                    android:layout_height="wrap_content"
  303.                    android:text="081210063906"
  304.                    android:textSize="18sp"
  305.                    android:textStyle="bold" />
  306.             </LinearLayout>
  307.         </LinearLayout>
  308.  
  309.         <View
  310.            android:layout_width="match_parent"
  311.            android:layout_height="1dp"
  312.            android:layout_marginTop="8dp"
  313.            android:background="@color/colorPrimaryDark" />
  314.  
  315.     </LinearLayout>
  316.  
  317.  
  318. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement