Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <android.support.v7.widget.CardView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- app:cardElevation="4dp">
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:padding="10dp">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <TextView
- android:layout_width="100dp"
- android:layout_height="wrap_content"
- android:text="Nama"/>
- <TextView
- android:layout_width="5dp"
- android:layout_height="wrap_content"
- android:text=":"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text=""
- android:id="@+id/tvNama"/>
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <TextView
- android:layout_width="100dp"
- android:layout_height="wrap_content"
- android:text="Usia"/>
- <TextView
- android:layout_width="5dp"
- android:layout_height="wrap_content"
- android:text=":"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text=""
- android:id="@+id/tvUsia"/>
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <TextView
- android:layout_width="100dp"
- android:layout_height="wrap_content"
- android:text="Domisili"/>
- <TextView
- android:layout_width="5dp"
- android:layout_height="wrap_content"
- android:text=":"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text=""
- android:id="@+id/tvDomisili"/>
- </LinearLayout>
- </LinearLayout>
- </android.support.v7.widget.CardView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement