|
@@ -2,12 +2,14 @@ package com.quansu.heifengwuliu.fragment
|
|
|
|
|
|
import android.app.Activity
|
|
|
import android.content.Intent
|
|
|
+import android.os.Build
|
|
|
import android.os.Bundle
|
|
|
import android.text.Editable
|
|
|
import android.text.TextUtils
|
|
|
import android.text.TextWatcher
|
|
|
import android.util.Log
|
|
|
import android.view.LayoutInflater
|
|
|
+import android.view.View
|
|
|
import android.view.ViewGroup
|
|
|
import androidx.lifecycle.Observer
|
|
|
import com.google.gson.Gson
|
|
@@ -39,6 +41,7 @@ import com.ysnows.base.model.PositionBean
|
|
|
import com.ysnows.base.route.IGaode
|
|
|
import com.ysnows.base.utils.B
|
|
|
import com.ysnows.base.utils.UiSwitch
|
|
|
+import com.ysnows.base.utils.UiUtils
|
|
|
import java.text.DecimalFormat
|
|
|
|
|
|
/**
|
|
@@ -88,6 +91,7 @@ class OwnerSingleFragment : MBFragment<OwnerSingleVModel, FragmentOwnersingleBin
|
|
|
|
|
|
override fun init(savedInstanceState: Bundle?) {
|
|
|
super.init(savedInstanceState)
|
|
|
+ setShow()
|
|
|
getData()
|
|
|
|
|
|
vm.info.observe(this, Observer {
|
|
@@ -98,6 +102,11 @@ class OwnerSingleFragment : MBFragment<OwnerSingleVModel, FragmentOwnersingleBin
|
|
|
if(numsTypeList.size>0){
|
|
|
numsTypeList.clear()
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ if(carList.size>0){
|
|
|
+ carList.clear()
|
|
|
+ }
|
|
|
goodsTypeList.addAll(it.goods_type)
|
|
|
|
|
|
numsTypeList.addAll(it.nums_type)
|
|
@@ -115,6 +124,23 @@ class OwnerSingleFragment : MBFragment<OwnerSingleVModel, FragmentOwnersingleBin
|
|
|
|
|
|
}
|
|
|
|
|
|
+ private fun setShow(){
|
|
|
+
|
|
|
+ if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) { //不支持沉浸式状态栏
|
|
|
+ } else {
|
|
|
+ //获取状态栏的高度
|
|
|
+ val statusBarHeight: Int = UiUtils.getStatusBarHeight()
|
|
|
+
|
|
|
+ //动态设置高度 tv
|
|
|
+ val params = binding.tv.getLayoutParams()
|
|
|
+ //获取当前控件的布局对象
|
|
|
+ //params.height=UiUtils.dp2dip(getContext(), statusBarHeight);//设置当前控件布局的高度
|
|
|
+ params.height = statusBarHeight
|
|
|
+ binding.tv.layoutParams = params //将设置好的布局参数应用到控件中
|
|
|
+ binding.tv.visibility = View.VISIBLE
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
override fun vmClass(): Class<OwnerSingleVModel> {
|
|
|
return OwnerSingleVModel::class.java
|
|
@@ -134,9 +160,11 @@ class OwnerSingleFragment : MBFragment<OwnerSingleVModel, FragmentOwnersingleBin
|
|
|
PopuBottomUtils.showListString(context(), numsTypeList, object : ChoiceData {
|
|
|
override fun onRestuse(name: String?) {
|
|
|
vm.unit.value = name
|
|
|
- for((index,ss) in numsTypeList.withIndex()){
|
|
|
- if(ss == name){
|
|
|
- vm.unit_code=index.toString()
|
|
|
+ for ((index, ss) in numsTypeList.withIndex()) {
|
|
|
+ if (ss == name) {
|
|
|
+ vm.unit_code = index.toString()
|
|
|
+
|
|
|
+ Log.e("-shy-", " index= $index")
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -849,6 +877,19 @@ class OwnerSingleFragment : MBFragment<OwnerSingleVModel, FragmentOwnersingleBin
|
|
|
binding.etGoodsName.setText("")
|
|
|
binding.etSingCarPrice.setText("")
|
|
|
binding.etData.setText("")
|
|
|
+
|
|
|
+ if(goodsTypeList.size>0){
|
|
|
+ goodsTypeList.clear()
|
|
|
+ }
|
|
|
+ if(numsTypeList.size>0){
|
|
|
+ numsTypeList.clear()
|
|
|
+ }
|
|
|
+
|
|
|
+ if(carList.size>0){
|
|
|
+ carList.clear()
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
getData()
|
|
|
|
|
|
|