修改离线地图下载的按钮状态
修改详细信息面板快捷进入新增数据界面
This commit is contained in:
parent
b9e3e4766e
commit
485c2b4b79
@ -79,7 +79,6 @@ class OfflineMapDownloadManager(
|
|||||||
}
|
}
|
||||||
launchNext(id)
|
launchNext(id)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -34,7 +34,7 @@ class OfflineMapDownloadScope(
|
|||||||
/**
|
/**
|
||||||
* 管理观察者,同时只有一个就行了
|
* 管理观察者,同时只有一个就行了
|
||||||
*/
|
*/
|
||||||
private val observer = Observer<Any> {}
|
// private val observer = Observer<Any> {}
|
||||||
// private var lifecycleOwner: LifecycleOwner? = null
|
// private var lifecycleOwner: LifecycleOwner? = null
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -58,8 +58,14 @@ class OfflineMapDownloadScope(
|
|||||||
*/
|
*/
|
||||||
fun pause() {
|
fun pause() {
|
||||||
downloadJob?.cancel("pause")
|
downloadJob?.cancel("pause")
|
||||||
|
launch {
|
||||||
|
if (cityBean.fileSize == 0L) {
|
||||||
|
change(FileDownloadStatus.NONE)
|
||||||
|
} else {
|
||||||
change(FileDownloadStatus.PAUSE)
|
change(FileDownloadStatus.PAUSE)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 启动协程进行下载
|
* 启动协程进行下载
|
||||||
@ -99,7 +105,6 @@ class OfflineMapDownloadScope(
|
|||||||
* 添加下载任务观察者
|
* 添加下载任务观察者
|
||||||
*/
|
*/
|
||||||
fun observer(owner: LifecycleOwner, ob: Observer<OfflineMapCityBean>) {
|
fun observer(owner: LifecycleOwner, ob: Observer<OfflineMapCityBean>) {
|
||||||
removeObserver()
|
|
||||||
// this.lifecycleOwner = owner
|
// this.lifecycleOwner = owner
|
||||||
downloadData.observe(owner, ob)
|
downloadData.observe(owner, ob)
|
||||||
}
|
}
|
||||||
@ -167,11 +172,15 @@ class OfflineMapDownloadScope(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
fun removeObserver() {
|
fun removeObserver() {
|
||||||
downloadData.observeForever(observer)
|
// downloadData.observeForever(observer)
|
||||||
// lifecycleOwner?.let {
|
//// lifecycleOwner?.let {
|
||||||
downloadData.removeObserver(observer)
|
// downloadData.removeObserver(observer)
|
||||||
// null
|
//// null
|
||||||
|
//// }
|
||||||
|
// if (lifecycleOwner != null) {
|
||||||
|
// downloadData.removeObservers(lifecycleOwner!!)
|
||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -248,10 +248,6 @@ class TaskDownloadScope(
|
|||||||
//// null
|
//// null
|
||||||
//// }
|
//// }
|
||||||
if (lifecycleOwner != null) {
|
if (lifecycleOwner != null) {
|
||||||
Log.e(
|
|
||||||
"jingo",
|
|
||||||
"移除的上一个监听者 ${lifecycleOwner.hashCode()} ${(lifecycleOwner as BaseViewHolder).tag}"
|
|
||||||
)
|
|
||||||
downloadData.removeObservers(lifecycleOwner!!)
|
downloadData.removeObservers(lifecycleOwner!!)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -362,6 +362,7 @@ class LoginViewModel @Inject constructor(
|
|||||||
.directory(userFolder)
|
.directory(userFolder)
|
||||||
.name("OMQS.realm")
|
.name("OMQS.realm")
|
||||||
.encryptionKey(password)
|
.encryptionKey(password)
|
||||||
|
.allowQueriesOnUiThread(true)
|
||||||
// .modules(Realm.getDefaultModule(), MyRealmModule())
|
// .modules(Realm.getDefaultModule(), MyRealmModule())
|
||||||
.schemaVersion(2)
|
.schemaVersion(2)
|
||||||
.build()
|
.build()
|
||||||
|
@ -174,7 +174,7 @@ class MainViewModel @Inject constructor(
|
|||||||
*/
|
*/
|
||||||
private var bSelectPauseTrace = false
|
private var bSelectPauseTrace = false
|
||||||
|
|
||||||
private var linkIdCache = ""
|
var linkIdCache = ""
|
||||||
|
|
||||||
private var lastNiLocaion: NiLocation? = null
|
private var lastNiLocaion: NiLocation? = null
|
||||||
|
|
||||||
|
@ -444,10 +444,11 @@ class EvaluationResultViewModel @Inject constructor(
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
fun initData(id: String) {
|
fun initData(id: String) {
|
||||||
|
Log.e("jingo", "捕捉到的要素 id = $id")
|
||||||
viewModelScope.launch(Dispatchers.IO) {
|
viewModelScope.launch(Dispatchers.Main) {
|
||||||
|
|
||||||
val realm = Realm.getDefaultInstance()
|
val realm = Realm.getDefaultInstance()
|
||||||
|
|
||||||
val objects = realm.where(QsRecordBean::class.java).equalTo("id", id).findFirst()
|
val objects = realm.where(QsRecordBean::class.java).equalTo("id", id).findFirst()
|
||||||
Log.e("jingo", "查询数据 id= $id")
|
Log.e("jingo", "查询数据 id= $id")
|
||||||
if (objects != null) {
|
if (objects != null) {
|
||||||
|
@ -5,6 +5,7 @@ import android.util.Log
|
|||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
|
import androidx.lifecycle.Lifecycle
|
||||||
import androidx.lifecycle.Observer
|
import androidx.lifecycle.Observer
|
||||||
import com.navinfo.omqs.R
|
import com.navinfo.omqs.R
|
||||||
import com.navinfo.omqs.databinding.AdapterOfflineMapCityBinding
|
import com.navinfo.omqs.databinding.AdapterOfflineMapCityBinding
|
||||||
@ -14,6 +15,7 @@ import com.navinfo.omqs.tools.FileManager
|
|||||||
import com.navinfo.omqs.tools.FileManager.Companion.FileDownloadStatus
|
import com.navinfo.omqs.tools.FileManager.Companion.FileDownloadStatus
|
||||||
import com.navinfo.omqs.ui.other.BaseRecyclerViewAdapter
|
import com.navinfo.omqs.ui.other.BaseRecyclerViewAdapter
|
||||||
import com.navinfo.omqs.ui.other.BaseViewHolder
|
import com.navinfo.omqs.ui.other.BaseViewHolder
|
||||||
|
import com.navinfo.omqs.ui.other.OnLifecycleStateListener
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -68,7 +70,26 @@ class OfflineMapCityListAdapter(
|
|||||||
|
|
||||||
changeViews(binding, cityBean)
|
changeViews(binding, cityBean)
|
||||||
downloadManager.addTask(cityBean)
|
downloadManager.addTask(cityBean)
|
||||||
downloadManager.observer(cityBean.id, holder, DownloadObserver(cityBean.id, holder))
|
|
||||||
|
holder.addObserver(object : OnLifecycleStateListener {
|
||||||
|
override fun onState(tag: String, state: Lifecycle.State) {
|
||||||
|
when (state) {
|
||||||
|
Lifecycle.State.STARTED -> {
|
||||||
|
downloadManager.observer(
|
||||||
|
cityBean.id,
|
||||||
|
holder,
|
||||||
|
DownloadObserver(cityBean.id, holder)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
Lifecycle.State.DESTROYED -> {
|
||||||
|
downloadManager.removeObserver(cityBean.id)
|
||||||
|
}
|
||||||
|
else -> {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
binding.offlineMapDownloadBtn.tag = position
|
binding.offlineMapDownloadBtn.tag = position
|
||||||
binding.offlineMapDownloadBtn.setOnClickListener(downloadBtnClick)
|
binding.offlineMapDownloadBtn.setOnClickListener(downloadBtnClick)
|
||||||
binding.offlineMapCityName.text = cityBean.name
|
binding.offlineMapCityName.text = cityBean.name
|
||||||
|
@ -51,6 +51,23 @@ class OfflineMapCityListFragment : Fragment() {
|
|||||||
viewModel.cityListLiveData.observe(viewLifecycleOwner) {
|
viewModel.cityListLiveData.observe(viewLifecycleOwner) {
|
||||||
adapter.refreshData(it)
|
adapter.refreshData(it)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
override fun onStart() {
|
||||||
|
super.onStart()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onStop() {
|
||||||
|
super.onStop()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onPause() {
|
||||||
|
super.onPause()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onResume() {
|
||||||
|
super.onResume()
|
||||||
viewModel.getCityList()
|
viewModel.getCityList()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,6 +54,18 @@ class OfflineMapStateListFragment : Fragment() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onStart() {
|
||||||
|
super.onStart()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onStop() {
|
||||||
|
super.onStop()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onPause() {
|
||||||
|
super.onPause()
|
||||||
|
}
|
||||||
|
|
||||||
override fun onDestroyView() {
|
override fun onDestroyView() {
|
||||||
super.onDestroyView()
|
super.onDestroyView()
|
||||||
_binding = null
|
_binding = null
|
||||||
|
@ -29,12 +29,7 @@ class OfflineMapStateListViewModel @Inject constructor(
|
|||||||
fun getCityList() {
|
fun getCityList() {
|
||||||
viewModelScope.launch(Dispatchers.IO) {
|
viewModelScope.launch(Dispatchers.IO) {
|
||||||
val list = roomDatabase.getOfflineMapDao().getOfflineMapListWithOutNone()
|
val list = roomDatabase.getOfflineMapDao().getOfflineMapListWithOutNone()
|
||||||
if (cityListLiveData.value != null) {
|
|
||||||
if (cityListLiveData.value!!.size != list.size)
|
|
||||||
cityListLiveData.postValue(list)
|
|
||||||
}else{
|
|
||||||
cityListLiveData.postValue(list)
|
cityListLiveData.postValue(list)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
@ -5,8 +5,11 @@ import android.view.LayoutInflater
|
|||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
import androidx.fragment.app.activityViewModels
|
import androidx.fragment.app.activityViewModels
|
||||||
|
import androidx.navigation.findNavController
|
||||||
import androidx.recyclerview.widget.LinearLayoutManager
|
import androidx.recyclerview.widget.LinearLayoutManager
|
||||||
|
import com.navinfo.collect.library.data.entity.RenderEntity
|
||||||
import com.navinfo.omqs.R
|
import com.navinfo.omqs.R
|
||||||
|
import com.navinfo.omqs.bean.SignBean
|
||||||
import com.navinfo.omqs.databinding.FragmentSignInfoBinding
|
import com.navinfo.omqs.databinding.FragmentSignInfoBinding
|
||||||
import com.navinfo.omqs.ui.activity.map.MainViewModel
|
import com.navinfo.omqs.ui.activity.map.MainViewModel
|
||||||
import com.navinfo.omqs.ui.fragment.BaseFragment
|
import com.navinfo.omqs.ui.fragment.BaseFragment
|
||||||
@ -91,6 +94,33 @@ class SignMoreInfoFragment : BaseFragment() {
|
|||||||
.commit()
|
.commit()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
binding.signInfoTitle.setOnClickListener {
|
||||||
|
activity?.run {
|
||||||
|
val rightController = findNavController(R.id.main_activity_right_fragment)
|
||||||
|
rightController.currentDestination?.let {
|
||||||
|
if (it.id == R.id.RightEmptyFragment) {
|
||||||
|
val bundle = Bundle()
|
||||||
|
val element = viewModel.liveDataSignMoreInfo.value
|
||||||
|
if (element != null) {
|
||||||
|
val signBean = SignBean(
|
||||||
|
iconId = SignUtil.getSignIcon(element),
|
||||||
|
iconText = SignUtil.getSignIconText(element),
|
||||||
|
linkId = element.properties[RenderEntity.Companion.LinkTable.linkPid]
|
||||||
|
?: "",
|
||||||
|
name = SignUtil.getSignNameText(element),
|
||||||
|
bottomRightText = SignUtil.getSignBottomRightText(element),
|
||||||
|
renderEntity = element,
|
||||||
|
isMoreInfo = SignUtil.isMoreInfo(element),
|
||||||
|
index = SignUtil.getRoadInfoIndex(element)
|
||||||
|
)
|
||||||
|
bundle.putParcelable("SignBean", signBean)
|
||||||
|
bundle.putBoolean("AutoSave", false)
|
||||||
|
rightController.navigate(R.id.EvaluationResultFragment, bundle)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onDestroyView() {
|
override fun onDestroyView() {
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
package com.navinfo.omqs.ui.other
|
package com.navinfo.omqs.ui.other
|
||||||
|
|
||||||
|
import android.util.Log
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import androidx.lifecycle.Lifecycle
|
import androidx.lifecycle.Lifecycle
|
||||||
import androidx.lifecycle.LifecycleOwner
|
import androidx.lifecycle.LifecycleOwner
|
||||||
|
@ -604,11 +604,10 @@ public final class NIMapView extends RelativeLayout {
|
|||||||
BASE(0)/*底图图层组*/,
|
BASE(0)/*底图图层组*/,
|
||||||
VECTOR_TILE(1)/*矢量瓦片组*/,
|
VECTOR_TILE(1)/*矢量瓦片组*/,
|
||||||
VECTOR(2)/*高亮组*/,
|
VECTOR(2)/*高亮组*/,
|
||||||
OPERATE_LINE(3)/*操作图层组*/,
|
NAVIGATION(3)/*定位导航组*/,
|
||||||
OPERATE_MARKER(4)/*操作图层组*/,
|
LABEL(4)/*图标,文字图层*/,
|
||||||
NAVIGATION(5)/*定位导航组*/,
|
OPERATE_LINE(5)/*操作图层组*/,
|
||||||
LABEL(6)/*图标,文字图层*/;
|
OPERATE_MARKER(6)/*操作图层组*/;
|
||||||
|
|
||||||
int groupIndex;
|
int groupIndex;
|
||||||
|
|
||||||
LAYER_GROUPS(int groupIndex) {
|
LAYER_GROUPS(int groupIndex) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user