Files
arrest-tb/app/src/main/res/layout/activity_camera__guide.xml
developerraman cff90da71f First Commit
2020-10-18 03:36:48 -07:00

116 lines
3.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent"
>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentStart="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_gravity="center_horizontal"
android:text="Guideline "
android:textColor="#131313"
android:textSize="@dimen/heading_size"
android:textStyle="bold">
</TextView>
<View
android:layout_margin="20dp"
android:layout_width="fill_parent"
android:layout_height="2dp"
android:background="#EEE" />
<TextView
android:paddingLeft="26dp"
android:layout_width="wrap_content"
android:textSize="@dimen/small_text_size"
android:fontFamily="@font/fontstyle"
android:textStyle="bold"
android:layout_height="wrap_content"
android:text="Don't Use Flash to Click the Picture"
/>
<View
android:layout_margin="10dp"
android:layout_width="fill_parent"
android:layout_height="0.8dp"
android:background="#EEE" />
<TextView
android:paddingLeft="26dp"
android:fontFamily="@font/fontstyle"
android:textStyle="bold"
android:layout_width="wrap_content"
android:textSize="@dimen/small_text_size"
android:layout_height="wrap_content"
android:text="Take the picture when the lid is open and focused on the Pattern"
/>
<View
android:layout_margin="18dp"
android:layout_width="fill_parent"
android:layout_height="0.8dp"
android:background="#EEE" />
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/circle_image"
android:layout_width="234dp"
android:layout_height="234dp"
android:layout_gravity="center"
android:src="@drawable/sample1"
app:civ_border_width="2dp" />
<View
android:layout_margin="20dp"
android:layout_width="fill_parent"
android:layout_height="2dp"
android:background="#EEE" />
<Button
android:id="@+id/intro"
android:layout_width="match_parent"
android:layout_marginTop="10dp"
android:background="@drawable/buttonshape"
android:layout_height="wrap_content"
android:layout_marginStart="100dp"
android:layout_marginBottom="20dp"
android:layout_marginEnd="100dp"
android:textColor="@android:color/white"
android:text="Get Started"
android:textAllCaps="false"
android:textSize="20sp" />
</LinearLayout>
</ScrollView>
</LinearLayout>