Skip to content

Instantly share code, notes, and snippets.

@alfianyusufabdullah
Created February 3, 2017 10:15
Show Gist options
  • Save alfianyusufabdullah/7697cd4f9a460dd6234afcd2b79fcef7 to your computer and use it in GitHub Desktop.
Save alfianyusufabdullah/7697cd4f9a460dd6234afcd2b79fcef7 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_margin="10dp">
<ImageView
android:id="@+id/row_logo"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@mipmap/ic_launcher"
android:layout_gravity="center_vertical"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_margin="10dp">
<TextView
android:id="@+id/row_nama"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Nama Daerah"
android:textSize="25sp"/>
<TextView
android:id="@+id/row_pemerintahan"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Nama Daerah Pemrintahan"
android:textSize="15sp"/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment