Files
arrest-tb/app/src/main/res/layout/activity_camera__guide.xml
developerraman f57f5fae63 First Commit
2020-10-27 11:05:46 -07:00

115 lines
3.3 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="24sp"
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="18sp"
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="18sp"
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_gravity="center"
android:src="@drawable/Sample_image1"
android:layout_height="234dp"
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>