Skip to content

Instantly share code, notes, and snippets.

@hafidalim
Created October 13, 2019 05:34
Show Gist options
  • Save hafidalim/4830f2d018d2780c6225babf48505342 to your computer and use it in GitHub Desktop.
Save hafidalim/4830f2d018d2780c6225babf48505342 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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/img_item"
android:layout_width="120dp"
android:src="@mipmap/ic_launcher"
android:layout_height="160dp" />
<TextView
android:id="@+id/tv_title_item"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="26dp"
android:layout_toRightOf="@id/img_item"
android:text="Judul"
android:textSize="20sp"
android:textStyle="bold" />
<TextView
android:id="@+id/tv_desc_item"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/tv_title_item"
android:layout_marginStart="26dp"
android:layout_marginTop="10dp"
android:layout_toRightOf="@id/img_item"
android:text="Deskripsi"/>
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment