Advertisement
Hanif_Amrullah

kuisIAK

Jan 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.35 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:layout_margin="@dimen/space_tepi"
  7.    tools:context="com.hanif.quizkulinersolo.Soal1">
  8.     <ImageView
  9.        android:id="@+id/img_soal"
  10.        android:layout_width="match_parent"
  11.        android:layout_height="350dp"
  12.        android:src="@drawable/macan"
  13.        android:scaleType="centerCrop"/>
  14.     <TextView
  15.        android:id="@+id/tv_soal"
  16.        android:layout_width="match_parent"
  17.        android:layout_height="wrap_content"
  18.        android:layout_below="@id/img_soal"
  19.        android:text="Hewan Apakah Ini?"
  20.        android:layout_marginTop="16dp"/>
  21.     <EditText
  22.        android:id="@+id/edt_jawaban"
  23.        android:layout_width="match_parent"
  24.        android:layout_height="wrap_content"
  25.        android:layout_below="@id/tv_soal"
  26.        android:textColorHint="@color/colorAccent"
  27.        android:hint="Jawablah Dengan Benar"/>
  28.     <Button
  29.        android:id="@+id/btn_lanjut"
  30.        android:layout_width="match_parent"
  31.        android:layout_height="wrap_content"
  32.        android:layout_alignParentBottom="true"
  33.        android:text="@string/lanjutkan"/>
  34. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement