128 lines
5.0 KiB
XML
128 lines
5.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/root">
|
|
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ImageView
|
|
android:id="@+id/map"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="200dp"
|
|
android:padding="50dp"
|
|
app:srcCompat="@drawable/ic_app"
|
|
android:background="@color/defaultBrand" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:padding="20dp">
|
|
|
|
<EditText
|
|
android:id="@+id/name_et"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:hint="@string/name"
|
|
android:lines="1"
|
|
android:maxLines="1"
|
|
android:singleLine="true"
|
|
android:ellipsize="end"/>
|
|
|
|
<EditText
|
|
android:id="@+id/description_et"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:gravity="start|top"
|
|
android:inputType="textMultiLine"
|
|
android:lines="5"
|
|
android:maxLines="10"
|
|
android:hint="@string/description"
|
|
android:ellipsize="end" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:textStyle="bold"
|
|
android:text="@string/created" />
|
|
|
|
<TextView
|
|
android:id="@+id/created_tv"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAlignment="textEnd" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:textStyle="bold"
|
|
android:text="@string/modified" />
|
|
|
|
<TextView
|
|
android:id="@+id/modified_tv"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAlignment="textEnd" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:textStyle="bold"
|
|
android:text="@string/category" />
|
|
|
|
<TextView
|
|
android:id="@+id/category_tv"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAlignment="textEnd" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:text="@string/coords"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/coords_tv"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAlignment="textEnd" />
|
|
|
|
<TextView
|
|
android:id="@+id/accuracy_tv"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:textAlignment="center"
|
|
android:text="@string/accuracy"
|
|
android:textColor="@android:color/white"
|
|
android:background="@android:color/darker_gray"/>
|
|
|
|
<Button
|
|
android:id="@+id/submit_bt"
|
|
style="@style/Widget.AppCompat.Button.Colored"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp"
|
|
android:layout_margin="50dp"
|
|
android:text="@string/confirm"
|
|
app:backgroundTint="@color/defaultBrand"
|
|
android:onClick="onSubmit"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
</layout> |