Skip to content

Instantly share code, notes, and snippets.

@alfianyusufabdullah
Created January 2, 2018 12:37
Show Gist options
  • Save alfianyusufabdullah/74fb75b44f93e2763870547610d20b49 to your computer and use it in GitHub Desktop.
Save alfianyusufabdullah/74fb75b44f93e2763870547610d20b49 to your computer and use it in GitHub Desktop.
row
<?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:layout_margin="10dp"
android:orientation="horizontal">
<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_gravity="center_vertical"
android:src="@drawable/ic_reading" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:orientation="vertical">
<TextView
android:id="@+id/rowNamaMahasiswa"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hint_nama"
android:textSize="20sp"
android:textStyle="bold" />
<TextView
android:id="@+id/rowNimMahasiswa"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hint_semester"
android:textSize="15sp" />
<TextView
android:id="@+id/rowSemesterMahasiswa"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:text="@string/hint_nim"
android:textSize="12sp"
android:textStyle="italic" />
</LinearLayout>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment