fix: 修复退出登录数据未清除错误
This commit is contained in:
parent
b6af7650d1
commit
6297f02054
@ -20,4 +20,11 @@ object DataBase {
|
||||
val conversationBox: Box<Conversation> by lazy { getBoxStore().boxFor() }
|
||||
|
||||
val userInfoBox: Box<UserInfo> by lazy { getBoxStore().boxFor() }
|
||||
|
||||
fun cleanAllData() {
|
||||
contactBox.removeAll()
|
||||
messagesBox.removeAll()
|
||||
conversationBox.removeAll()
|
||||
userInfoBox.removeAll()
|
||||
}
|
||||
}
|
@ -5,11 +5,15 @@ import android.content.Intent
|
||||
import android.os.Bundle
|
||||
import android.view.View
|
||||
import androidx.activity.enableEdgeToEdge
|
||||
import com.bumptech.glide.Glide
|
||||
import com.kaixed.kchat.data.DataBase
|
||||
import com.kaixed.kchat.data.local.entity.Contact
|
||||
import com.kaixed.kchat.data.local.entity.Contact_
|
||||
import com.kaixed.kchat.databinding.ActivityContactsDetailBinding
|
||||
import com.kaixed.kchat.ui.base.BaseActivity
|
||||
import com.kaixed.kchat.utils.ConstantsUtil.getAvatarUrl
|
||||
import com.kaixed.kchat.utils.ConstantsUtil.getNickName
|
||||
import com.kaixed.kchat.utils.ConstantsUtil.getUsername
|
||||
|
||||
class ContactsDetailActivity : BaseActivity<ActivityContactsDetailBinding>() {
|
||||
|
||||
@ -17,6 +21,8 @@ class ContactsDetailActivity : BaseActivity<ActivityContactsDetailBinding>() {
|
||||
|
||||
private var contactNickname: String? = null
|
||||
|
||||
private var isMine = false
|
||||
|
||||
companion object {
|
||||
private const val TAG = "ContactsDetailActivity"
|
||||
}
|
||||
@ -37,10 +43,25 @@ class ContactsDetailActivity : BaseActivity<ActivityContactsDetailBinding>() {
|
||||
|
||||
override fun initData() {
|
||||
contactId = intent.getStringExtra("contactId")
|
||||
isMine = intent.getBooleanExtra("isMine", false)
|
||||
}
|
||||
|
||||
@SuppressLint("SetTextI18n")
|
||||
private fun updateContent() {
|
||||
if (isMine) {
|
||||
binding.tvContactId.text = "星联号: ${getUsername()}"
|
||||
Glide.with(this)
|
||||
.load(getAvatarUrl())
|
||||
.into(binding.ifvAvatar)
|
||||
binding.tvRemark.text = getNickName()
|
||||
binding.ciPermission.visibility = View.GONE
|
||||
binding.ciMore.visibility = View.GONE
|
||||
binding.tvVideoCall.visibility = View.GONE
|
||||
binding.view.visibility = View.GONE
|
||||
binding.ctb.ivSetting.visibility = View.GONE
|
||||
binding.ciSetRemarkAndLabel.visibility = View.GONE
|
||||
return
|
||||
}
|
||||
val contact: Contact by lazy {
|
||||
getContactInfo(contactId!!)
|
||||
}
|
||||
@ -63,7 +84,7 @@ class ContactsDetailActivity : BaseActivity<ActivityContactsDetailBinding>() {
|
||||
}
|
||||
|
||||
private fun setOnListener() {
|
||||
binding.rlSendMessage.setOnClickListener {
|
||||
binding.tvSendMessage.setOnClickListener {
|
||||
startActivity(Intent(this, ChatActivity::class.java).apply {
|
||||
putExtra("contactId", contactId)
|
||||
putExtra("contactNickname", contactId)
|
||||
|
@ -17,6 +17,7 @@ import com.kaixed.kchat.data.model.search.SearchUser
|
||||
import com.kaixed.kchat.databinding.ActivitySearchFriendsBinding
|
||||
import com.kaixed.kchat.ui.base.BaseActivity
|
||||
import com.kaixed.kchat.ui.widget.LoadingDialogFragment
|
||||
import com.kaixed.kchat.utils.ConstantsUtil.getUsername
|
||||
import com.kaixed.kchat.viewmodel.ContactViewModel
|
||||
|
||||
class SearchFriendsActivity : BaseActivity<ActivitySearchFriendsBinding>() {
|
||||
@ -27,12 +28,14 @@ class SearchFriendsActivity : BaseActivity<ActivitySearchFriendsBinding>() {
|
||||
|
||||
private lateinit var loadingDialog: LoadingDialogFragment
|
||||
|
||||
private val contactViewModel: ContactViewModel by viewModels()
|
||||
|
||||
private var isSearchedMine = false
|
||||
|
||||
override fun inflateBinding(): ActivitySearchFriendsBinding {
|
||||
return ActivitySearchFriendsBinding.inflate(layoutInflater)
|
||||
}
|
||||
|
||||
private val contactViewModel: ContactViewModel by viewModels()
|
||||
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
enableEdgeToEdge()
|
||||
@ -60,9 +63,17 @@ class SearchFriendsActivity : BaseActivity<ActivitySearchFriendsBinding>() {
|
||||
finish()
|
||||
}
|
||||
binding.clFriends.setOnClickListener {
|
||||
val intent = Intent(this, ApplyFriendsDetailActivity::class.java).apply {
|
||||
val intent =
|
||||
if (isSearchedMine) {
|
||||
Intent(this, ContactsDetailActivity::class.java).apply {
|
||||
putExtra("isMine", getUsername() == userItem.username)
|
||||
putExtra("contactId", userItem.username)
|
||||
}
|
||||
} else {
|
||||
Intent(this, ApplyFriendsDetailActivity::class.java).apply {
|
||||
putExtra("user", userItem)
|
||||
}
|
||||
}
|
||||
startActivity(intent)
|
||||
}
|
||||
|
||||
@ -94,10 +105,12 @@ class SearchFriendsActivity : BaseActivity<ActivitySearchFriendsBinding>() {
|
||||
contactViewModel.searchContactResult.observe(this) { result ->
|
||||
result.onSuccess {
|
||||
it?.let {
|
||||
isSearchedMine = it.username == getUsername()
|
||||
if (LocalDatabase.isMyFriend(it.username)) {
|
||||
val username = it.username
|
||||
val intent =
|
||||
Intent(this, ContactsDetailActivity::class.java).apply {
|
||||
putExtra("contactId", it.username)
|
||||
putExtra("contactId", username)
|
||||
}
|
||||
startActivity(intent)
|
||||
} else {
|
||||
|
@ -129,9 +129,6 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(), OnItemListener,
|
||||
}
|
||||
|
||||
private fun setOnClick() {
|
||||
binding.ifvAvatar.setOnClickListener {
|
||||
startActivity(Intent(context, TestActivity::class.java))
|
||||
}
|
||||
binding.ivSearch.setOnClickListener {
|
||||
val intent = Intent(context, SearchActivity::class.java)
|
||||
startActivity(intent)
|
||||
|
@ -1,8 +1,6 @@
|
||||
package com.kaixed.kchat.ui.widget
|
||||
|
||||
|
||||
import android.app.Activity
|
||||
import android.content.Context
|
||||
import android.content.Intent
|
||||
import android.os.Bundle
|
||||
import android.view.LayoutInflater
|
||||
@ -10,15 +8,12 @@ import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import com.google.android.material.bottomsheet.BottomSheetDialogFragment
|
||||
import com.kaixed.kchat.R
|
||||
import com.kaixed.kchat.data.local.box.ObjectBox.getBoxStore
|
||||
import com.kaixed.kchat.data.local.entity.Conversation
|
||||
import com.kaixed.kchat.data.local.entity.Messages
|
||||
import com.kaixed.kchat.data.DataBase
|
||||
import com.kaixed.kchat.databinding.BottomSheetLayoutBinding
|
||||
import com.kaixed.kchat.ui.activity.LoginActivity
|
||||
import com.kaixed.kchat.utils.Constants.MMKV_USER_SESSION
|
||||
import com.kaixed.kchat.utils.Constants.USER_LOGIN_STATUS
|
||||
import com.tencent.mmkv.MMKV
|
||||
import io.objectbox.BoxStore
|
||||
|
||||
/**
|
||||
* @Author: kaixed
|
||||
@ -30,9 +25,7 @@ class MyBottomSheetFragment : BottomSheetDialogFragment() {
|
||||
private val binding get() = _binding!!
|
||||
|
||||
override fun onCreateView(
|
||||
inflater: LayoutInflater,
|
||||
container: ViewGroup?,
|
||||
savedInstanceState: Bundle?
|
||||
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
||||
): View {
|
||||
_binding = BottomSheetLayoutBinding.inflate(inflater, container, false)
|
||||
return binding.root
|
||||
@ -50,14 +43,11 @@ class MyBottomSheetFragment : BottomSheetDialogFragment() {
|
||||
deleteAllUserData()
|
||||
activity?.finish()
|
||||
|
||||
activity?.startActivity(
|
||||
Intent(
|
||||
activity,
|
||||
LoginActivity::class.java
|
||||
activity?.startActivity(Intent(
|
||||
activity, LoginActivity::class.java
|
||||
).apply {
|
||||
flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK
|
||||
}
|
||||
)
|
||||
})
|
||||
}
|
||||
|
||||
binding.tvCancel.setOnClickListener {
|
||||
@ -67,7 +57,6 @@ class MyBottomSheetFragment : BottomSheetDialogFragment() {
|
||||
binding.tvQuitApp.setOnClickListener {
|
||||
activity?.finishAffinity()
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private fun deleteAllUserData() {
|
||||
@ -76,11 +65,7 @@ class MyBottomSheetFragment : BottomSheetDialogFragment() {
|
||||
|
||||
MMKV.defaultMMKV().putBoolean(USER_LOGIN_STATUS, false)
|
||||
|
||||
|
||||
val boxStore: BoxStore = getBoxStore()
|
||||
|
||||
boxStore.boxFor(Conversation::class.java).removeAll()
|
||||
boxStore.boxFor(Messages::class.java).removeAll()
|
||||
DataBase.cleanAllData()
|
||||
}
|
||||
|
||||
override fun onDestroyView() {
|
||||
|
@ -24,7 +24,7 @@ object ConstantsUtil {
|
||||
private val defaultMMKV by lazy { MMKV.defaultMMKV() }
|
||||
|
||||
fun getKeyboardHeight(): Int =
|
||||
commonDataMMKV.getInt(KEYBOARD_HEIGHT, KEYBOARD_DEFAULT_HEIGHT)
|
||||
defaultMMKV.getInt(KEYBOARD_HEIGHT, KEYBOARD_DEFAULT_HEIGHT)
|
||||
|
||||
fun getUsername(): String =
|
||||
userSessionMMKV.getString(USERNAME_KEY, "") ?: ""
|
||||
|
@ -135,6 +135,7 @@
|
||||
</RelativeLayout>
|
||||
|
||||
<com.kaixed.kchat.ui.widget.CustomItem
|
||||
android:id="@+id/ci_more"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:isTopDividerVisible="true"
|
||||
@ -146,47 +147,30 @@
|
||||
android:layout_height="8dp"
|
||||
android:background="#E5E5E5" />
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_send_message"
|
||||
<TextView
|
||||
android:id="@+id/tv_send_message"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:paddingStart="15dp"
|
||||
tools:ignore="RtlSymmetry">
|
||||
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerInParent="true"
|
||||
android:gravity="center"
|
||||
android:text="发消息"
|
||||
android:textColor="@color/normal"
|
||||
android:textSize="16sp" />
|
||||
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<View
|
||||
android:id="@+id/view"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/divider_height"
|
||||
android:background="@color/gray" />
|
||||
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_send_video_call"
|
||||
<TextView
|
||||
android:id="@+id/tv_video_call"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:paddingStart="15dp"
|
||||
tools:ignore="RtlSymmetry">
|
||||
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerInParent="true"
|
||||
android:gravity="center"
|
||||
android:text="音视频通话"
|
||||
android:textColor="@color/normal"
|
||||
android:textSize="16sp" />
|
||||
</RelativeLayout>
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
|
@ -9,40 +9,19 @@
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<androidx.constraintlayout.utils.widget.ImageFilterView
|
||||
android:id="@+id/ifv_avatar"
|
||||
android:layout_width="45dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginVertical="10dp"
|
||||
android:layout_marginStart="15dp"
|
||||
android:src="@drawable/ic_avatar"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:roundPercent="1" />
|
||||
android:layout_height="45dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="10dp"
|
||||
android:text="肤浅"
|
||||
android:text="星联"
|
||||
android:textColor="@color/black"
|
||||
android:textSize="15sp"
|
||||
app:layout_constraintBottom_toTopOf="@id/tv_signature"
|
||||
app:layout_constraintStart_toEndOf="@id/ifv_avatar"
|
||||
app:layout_constraintTop_toTopOf="@id/ifv_avatar" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_signature"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="平安顺遂,喜乐无忧"
|
||||
app:layout_constraintBottom_toBottomOf="@id/ifv_avatar"
|
||||
app:layout_constraintStart_toStartOf="@id/tv_name"
|
||||
app:layout_constraintTop_toBottomOf="@id/tv_name" />
|
||||
android:textSize="16sp"
|
||||
android:textStyle="bold"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_search"
|
||||
|
Loading…
Reference in New Issue
Block a user