Skip to content

Instantly share code, notes, and snippets.

@ratanakpek
Created March 31, 2017 16:56
<?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="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="20dp"
android:background="#ffffff"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:textColor="#2e2b2b"
android:layout_marginBottom="10dp"
android:text="View Type : "/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:id="@+id/camera"
android:drawablePadding="16dp"
android:layout_marginBottom="7dp"
android:drawableLeft="@drawable/in_cam_icon_on"
android:text="You can take the Camera mode!"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:id="@+id/gallery"
android:drawablePadding="16dp"
android:drawableLeft="@drawable/in_pic_icon_on"
android:text="You can take the Gallery mode!"/>
</LinearLayout>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment