Skip to content

Instantly share code, notes, and snippets.

@alfianyusufabdullah
Created February 3, 2017 11:29
Show Gist options
  • Save alfianyusufabdullah/5efad2b95cd3749e6981921309a8eff7 to your computer and use it in GitHub Desktop.
Save alfianyusufabdullah/5efad2b95cd3749e6981921309a8eff7 to your computer and use it in GitHub Desktop.
<?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