68 lines
2.6 KiB
XML
68 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
xmlns:bootstrap="http://schemas.android.com/apk/res-auto"
|
|
android:padding="0dip"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout android:id="@+id/menu_ll"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:animateLayoutChanges="true">
|
|
|
|
<TextView
|
|
android:id="@+id/lbl_reportwf_1_question"
|
|
android:layout_centerHorizontal="true"
|
|
android:text="What happened?"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:layout_margin="20dp"
|
|
android:textColor="@color/bg_common" />
|
|
|
|
<Spinner
|
|
android:layout_width="300dp"
|
|
android:layout_height="50dp"
|
|
android:layout_margin="5dp"
|
|
android:maxLength="10"
|
|
android:background="@drawable/dropbox_2"
|
|
android:id="@+id/dd_reportwf_1_cat_main"
|
|
android:spinnerMode="dialog"
|
|
android:prompt="@string/lbl_spinner_choose"
|
|
android:layout_below="@id/lbl_reportwf_1_question"/>
|
|
|
|
<Spinner
|
|
android:layout_width="300dp"
|
|
android:layout_height="50dp"
|
|
android:layout_margin="5dp"
|
|
android:maxLength="10"
|
|
android:background="@drawable/dropbox_2"
|
|
android:id="@+id/dd_reportwf_1_cat_sub"
|
|
android:spinnerMode="dropdown"
|
|
android:layout_below="@id/dd_reportwf_1_cat_main"/>
|
|
|
|
<EditText
|
|
android:layout_width="300dp"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="invisible"
|
|
android:hint="Please enter your info here"
|
|
android:id="@+id/txt_reportwf_1_cat_etc"
|
|
android:layout_below="@id/dd_reportwf_1_cat_sub"/>
|
|
|
|
|
|
<com.beardedhen.androidbootstrap.AwesomeTextView
|
|
android:id="@+id/atv_reportwf_1_finish"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="80dp"
|
|
android:visibility="invisible"
|
|
bootstrap:bootstrapBrand="success"
|
|
bootstrap:fontAwesomeIcon="fa_check_circle_o"
|
|
android:layout_alignTop="@+id/txt_reportwf_1_cat_etc"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="19dp" />
|
|
</RelativeLayout>
|
|
</ScrollView> |