|
|
@@ -23,53 +23,78 @@
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
- <RelativeLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
+
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
android:layout_height="80dp"
|
|
|
+ android:layout_width="match_parent"
|
|
|
>
|
|
|
+ <!--left-->
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ >
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/range_minimum_btn"
|
|
|
+ android:layout_width="100dp"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:background="@drawable/black_border"
|
|
|
+ android:gravity="center"
|
|
|
+ android:hint="minimum"
|
|
|
+ android:textSize="17sp"/>
|
|
|
|
|
|
- <View
|
|
|
- android:id="@+id/date_start_place"
|
|
|
- android:layout_width="1dp"
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <!--mid-->
|
|
|
+ <RelativeLayout
|
|
|
android:layout_height="match_parent"
|
|
|
- android:layout_alignParentStart="true"
|
|
|
- />
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ >
|
|
|
|
|
|
- <Button
|
|
|
- android:id="@+id/range_minimum_btn"
|
|
|
- android:layout_width="100dp"
|
|
|
- android:layout_height="40dp"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:layout_marginLeft="10dp"
|
|
|
- android:layout_marginRight="10dp"
|
|
|
- android:layout_toEndOf="@+id/date_start_place"
|
|
|
- android:background="@drawable/black_border"
|
|
|
- android:gravity="center"
|
|
|
- android:hint="minimum"
|
|
|
- android:textSize="17sp"/>
|
|
|
-
|
|
|
-
|
|
|
- <View
|
|
|
- android:id="@+id/date_end_place"
|
|
|
- android:layout_width="1dp"
|
|
|
+ <Button
|
|
|
+ android:id="@+id/range_maximum_btn"
|
|
|
+ android:layout_width="100dp"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:background="@drawable/black_border"
|
|
|
+ android:gravity="center"
|
|
|
+ android:hint="maximum"
|
|
|
+ android:textSize="17sp"/>
|
|
|
+
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <!--right-->
|
|
|
+ <RelativeLayout
|
|
|
android:layout_height="match_parent"
|
|
|
- android:layout_alignParentEnd="true"
|
|
|
- />
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ >
|
|
|
|
|
|
- <Button
|
|
|
- android:id="@+id/range_maximum_btn"
|
|
|
- android:layout_width="100dp"
|
|
|
- android:layout_height="40dp"
|
|
|
- android:layout_alignBottom="@id/range_minimum_btn"
|
|
|
- android:layout_alignTop="@id/range_minimum_btn"
|
|
|
- android:layout_marginEnd="10dp"
|
|
|
- android:layout_toStartOf="@id/date_end_place"
|
|
|
- android:background="@drawable/black_border"
|
|
|
- android:gravity="center"
|
|
|
- android:hint="maximum"
|
|
|
- android:textSize="17sp"/>
|
|
|
+ <Button
|
|
|
+ android:id="@+id/range_reset_btn"
|
|
|
+ android:layout_width="100dp"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:background="#00000000"
|
|
|
+ android:gravity="center"
|
|
|
+ android:textSize="17sp"
|
|
|
+ android:text="Reset"
|
|
|
+ android:textAllCaps="false"/>
|
|
|
|
|
|
- </RelativeLayout>
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
|
|
|
</LinearLayout>
|