Created
March 31, 2017 16:56
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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