|
@@ -1,5 +1,6 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+<layout xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" >
|
|
|
|
|
|
<data >
|
|
@@ -22,7 +23,6 @@
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:focusable="true"
|
|
|
- xmlns:tools="http://schemas.android.com/tools"
|
|
|
android:focusableInTouchMode="true"
|
|
|
android:orientation="vertical">
|
|
|
|
|
@@ -340,8 +340,9 @@
|
|
|
<EditText
|
|
|
android:id="@+id/et_sing_car_nums"
|
|
|
android:layout_width="0dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="@dimen/dp_10"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:paddingStart="@dimen/dp_10"
|
|
|
+ android:paddingEnd="@dimen/dp_10"
|
|
|
android:layout_weight="1"
|
|
|
android:background="@null"
|
|
|
android:gravity="center_vertical|right"
|
|
@@ -398,8 +399,9 @@
|
|
|
<EditText
|
|
|
android:id="@+id/et_sing_car_price"
|
|
|
android:layout_width="0dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
android:layout_marginStart="@dimen/dp_10"
|
|
|
+ android:paddingEnd="@dimen/dp_10"
|
|
|
android:layout_weight="1"
|
|
|
android:background="@null"
|
|
|
android:text="@{item.price}"
|
|
@@ -431,12 +433,13 @@
|
|
|
<EditText
|
|
|
android:id="@+id/et_sing_car_total"
|
|
|
android:layout_width="0dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
android:layout_marginStart="@dimen/dp_10"
|
|
|
android:layout_weight="1"
|
|
|
android:background="@null"
|
|
|
android:gravity="center_vertical|right"
|
|
|
android:hint="请输入总金额"
|
|
|
+ android:paddingEnd="@dimen/dp_10"
|
|
|
android:text="@{item.total}"
|
|
|
android:textColor="#101010"
|
|
|
android:textColorHint="#BBBBBB"
|