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

53 lines
1.5 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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:orientation="vertical"
android:gravity="center"
android:layout_weight="10"
android:layout_height="match_parent"
>
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/circle_image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="5"
android:padding="23dp"
android:src="@android:drawable/ic_menu_gallery"
app:civ_border_width="1dp" />
<TextView
android:layout_width="wrap_content"
android:textSize="34dp"
android:layout_height="wrap_content"
android:textColor="@android:color/holo_red_light"
android:text=" Test Result: Positive"
android:id="@+id/selection_image"/>
<Button
android:id="@+id/report"
android:layout_width="match_parent"
android:layout_marginTop="10dp"
android:background="@drawable/buttonshape"
android:layout_height="wrap_content"
android:layout_marginStart="100dp"
android:layout_marginEnd="100dp"
android:textColor="@android:color/white"
android:text="Get Report"
android:layout_marginBottom="60dp"
android:textAllCaps="false"
android:textSize="20sp" />
</LinearLayout>