修改相关bug,修改充电站,充电桩
This commit is contained in:
BIN
app/src/main/res/drawable-hdpi/delete.png
Normal file
BIN
app/src/main/res/drawable-hdpi/delete.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 923 B |
BIN
app/src/main/res/drawable-hdpi/location_north_fill.png
Normal file
BIN
app/src/main/res/drawable-hdpi/location_north_fill.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 852 B |
@@ -52,6 +52,7 @@
|
||||
android:id="@+id/image_view"
|
||||
android:layout_width="300dp"
|
||||
android:layout_height="157dp"
|
||||
android:visibility="gone"
|
||||
app:layout_constraintHeight_default="percent"
|
||||
app:layout_constraintHeight_percent="0.4"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
|
||||
@@ -37,6 +37,50 @@
|
||||
android:layout_margin="10dp"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"/>
|
||||
<RelativeLayout
|
||||
android:id="@+id/linear_exist"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="10dp"
|
||||
android:background="@drawable/underline"
|
||||
android:padding="2dp"
|
||||
android:visibility="visible"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/tv_01">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_exist"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="18dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:layout_marginBottom="10dp"
|
||||
android:text="是否存在*"
|
||||
android:textColor="#333" />
|
||||
|
||||
<Spinner
|
||||
android:id="@+id/spinner_exist"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="40dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="18dp"
|
||||
android:layout_marginRight="10dp"
|
||||
android:layout_toEndOf="@id/tv_exist"
|
||||
android:layout_toRightOf="@id/tv_exist"
|
||||
android:background="@color/white"
|
||||
android:textColor="#333"
|
||||
android:textSize="15sp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:background="@drawable/ic_baseline_arrow_drop" />
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/linear_pot"
|
||||
@@ -48,7 +92,7 @@
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintHorizontal_bias="1.0"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/tv_01">
|
||||
app:layout_constraintTop_toBottomOf="@id/linear_exist">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_pot"
|
||||
@@ -206,11 +250,8 @@
|
||||
android:text="对除环卫,公交,出租,品牌,之外的其他 特种车辆开放"
|
||||
/>
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<!-- <RadioGroup
|
||||
android:id="@+id/radio_group"
|
||||
android:layout_width="match_parent"
|
||||
@@ -261,6 +302,7 @@
|
||||
/>
|
||||
|
||||
</RadioGroup>-->
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/linear_type"
|
||||
android:layout_width="match_parent"
|
||||
@@ -647,6 +689,7 @@
|
||||
/>
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:id="@+id/relative_linear"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_marginTop="10dp"
|
||||
android:layout_height="100dp"
|
||||
@@ -850,8 +893,7 @@
|
||||
android:text="保存并返回"
|
||||
android:textColor="@color/white" />
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</LinearLayout>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
@@ -8,12 +8,12 @@
|
||||
|
||||
<Button
|
||||
android:id="@+id/btn_delete"
|
||||
android:layout_width="20dp"
|
||||
android:layout_height="20dp"
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:padding="5dp"
|
||||
android:layout_marginEnd="20dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:background="@drawable/icon_delete"
|
||||
android:background="@drawable/delete"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
|
||||
@@ -42,13 +42,16 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:layout_marginStart="20dp"
|
||||
android:layout_marginEnd="20dp"
|
||||
app:layout_constraintLeft_toLeftOf="@id/tv_select_type"
|
||||
app:layout_constraintTop_toBottomOf="@id/tv_select_type">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_marginTop="10dp"
|
||||
android:layout_marginBottom="10dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="20dp"
|
||||
android:layout_height="40dp"
|
||||
android:background="@drawable/other_text">
|
||||
|
||||
<Spinner
|
||||
@@ -56,7 +59,6 @@
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="40dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_margin="2dp"
|
||||
android:layout_marginStart="10dp"
|
||||
android:layout_marginEnd="5dp"
|
||||
android:background="@color/white"
|
||||
@@ -147,7 +149,7 @@
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_height="40dp"
|
||||
android:layout_marginTop="20dp"
|
||||
android:background="@drawable/other_text">
|
||||
|
||||
@@ -182,6 +184,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginRight="10dp"
|
||||
android:visibility="gone"
|
||||
android:background="@drawable/icon_location"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintRight_toRightOf="parent"
|
||||
|
||||
@@ -108,7 +108,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:text="0.0"
|
||||
android:textColor="#000"
|
||||
android:textSize="30sp"
|
||||
android:textSize="25sp"
|
||||
android:textStyle="bold"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="@+id/tv_title"
|
||||
|
||||
@@ -73,9 +73,9 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="10dp"
|
||||
android:text="0.0"
|
||||
android:text="— —"
|
||||
android:textColor="#333"
|
||||
android:textSize="45sp"
|
||||
android:textSize="35sp"
|
||||
android:textStyle="normal"
|
||||
app:layout_constraintStart_toStartOf="@+id/tv_title"
|
||||
app:layout_constraintTop_toBottomOf="@+id/tv_title" />
|
||||
@@ -105,9 +105,9 @@
|
||||
android:id="@+id/tv_already"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="0.0"
|
||||
android:text="— —"
|
||||
android:textColor="#333"
|
||||
android:textSize="30sp"
|
||||
android:textSize="25sp"
|
||||
android:textStyle="normal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="@+id/tv_already_withdraw"
|
||||
@@ -127,9 +127,9 @@
|
||||
android:id="@+id/tv_total"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="0.0"
|
||||
android:text="— —"
|
||||
android:textColor="#333"
|
||||
android:textSize="30sp"
|
||||
android:textSize="25sp"
|
||||
android:textStyle="normal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="@+id/tv_total_assets"
|
||||
@@ -257,7 +257,7 @@
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_toRightOf="@id/image_poi"
|
||||
android:text="POI推送积分"
|
||||
android:text="POI推送金额"
|
||||
android:textColor="#333"
|
||||
android:textSize="18sp" />
|
||||
|
||||
@@ -297,7 +297,7 @@
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_toRightOf="@id/image_poi_report"
|
||||
android:text="POI上报任务积分"
|
||||
android:text="POI上报任务金额"
|
||||
android:textColor="#333"
|
||||
android:textSize="18sp" />
|
||||
|
||||
@@ -336,7 +336,7 @@
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_toRightOf="@id/image_poiVideo"
|
||||
android:text="POI录像推送积分"
|
||||
android:text="POI录像推送金额"
|
||||
android:textColor="#333"
|
||||
android:textSize="18sp" />
|
||||
|
||||
@@ -376,7 +376,7 @@
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_toRightOf="@id/image_poiVideo_report"
|
||||
android:text="POI录像上报任务积分"
|
||||
android:text="POI录像上报任务金额"
|
||||
android:textColor="#333"
|
||||
android:textSize="18sp" />
|
||||
|
||||
@@ -412,7 +412,7 @@
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="道路推送积分"
|
||||
android:text="道路推送金额"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toRightOf="@id/image_way"
|
||||
@@ -450,7 +450,7 @@
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="道路上报任务积分"
|
||||
android:text="道路上报任务金额"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toRightOf="@id/image_way_report"
|
||||
@@ -488,7 +488,7 @@
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="充电站推送积分"
|
||||
android:text="充电站推送金额"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toRightOf="@id/image_charging"
|
||||
@@ -526,7 +526,7 @@
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="道路上报任务积分"
|
||||
android:text="道路上报任务金额"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toRightOf="@id/image_charge_report"
|
||||
@@ -564,7 +564,7 @@
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="其他推送积分"
|
||||
android:text="其他推送金额"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toRightOf="@id/image_other"
|
||||
@@ -602,7 +602,7 @@
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="其他上报任务积分"
|
||||
android:text="其他上报任务金额"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toRightOf="@id/image_other_report"
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
<color name="colorPrimaryBlue">#03A9F4</color>
|
||||
<color name="colormap">#CBC2C5C6</color>
|
||||
<color name="colorBlue">#2196F3</color>
|
||||
|
||||
<color name="blue">#8181F7</color>
|
||||
<color name="colorAccent">#03DAC5</color>
|
||||
<color name="colorBack">#000000</color>
|
||||
|
||||
Reference in New Issue
Block a user