Created
February 3, 2017 11:29
-
-
Save alfianyusufabdullah/5efad2b95cd3749e6981921309a8eff7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:id="@+id/activity_detail" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:paddingBottom="@dimen/activity_vertical_margin" | |
android:paddingLeft="@dimen/activity_horizontal_margin" | |
android:paddingRight="@dimen/activity_horizontal_margin" | |
android:paddingTop="@dimen/activity_vertical_margin" | |
tools:context="com.jonesrandom.tutoriallistview.DetailActivity"> | |
<LinearLayout | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:orientation="vertical"> | |
<ImageView | |
android:id="@+id/detail_logo" | |
android:layout_width="100dp" | |
android:layout_height="100dp" | |
android:src="@mipmap/ic_launcher" | |
android:layout_gravity="center"/> | |
<TextView | |
android:id="@+id/detail_nama" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="Nama Daerah" | |
android:textSize="25sp" | |
android:gravity="center" | |
android:layout_marginTop="10dp"/> | |
<TextView | |
android:id="@+id/detail_pemerintahan" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="Nama Daerah Pemrintahan" | |
android:textSize="15sp" | |
android:gravity="center"/> | |
</LinearLayout> | |
</RelativeLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment