refactor: 重构主页面

1.将主页面更改为4个页面
2.完善自定义CustomItem
This commit is contained in:
糕小菜 2024-11-01 19:14:16 +08:00
parent acacdf1233
commit d4dc9a3b24
57 changed files with 1730 additions and 772 deletions

View File

@ -94,9 +94,6 @@
<activity
android:name=".ui.activity.AddFriendsActivity"
android:exported="false" />
<activity
android:name=".ui.activity.TestActivity"
android:exported="false" />
<activity
android:name=".ui.activity.ProfileActivity"
android:exported="false" />

View File

@ -257,9 +257,6 @@ class ChatActivity : BaseActivity(), OnItemClickListener {
private fun setListener() {
binding.tvContactName.setOnLongClickListener {
val intent =
Intent(context, TestActivity::class.java)
startActivity(intent)
false
}
@ -273,11 +270,14 @@ class ChatActivity : BaseActivity(), OnItemClickListener {
binding.recycleChatList.addOnScrollListener(object : RecyclerView.OnScrollListener() {
override fun onScrolled(recyclerView: RecyclerView, dx: Int, dy: Int) {
super.onScrolled(recyclerView, dx, dy)
val layoutManager = checkNotNull(recyclerView.layoutManager as LinearLayoutManager?)
val firstVisiblePosition = layoutManager.findLastVisibleItemPosition()
if (tempIndex + 1 == messagesList[firstVisiblePosition].msgLocalId && hasHistory && !loading) {
if (recyclerView.canScrollVertically(-1) && hasHistory && !loading) {
loadMoreMessages()
}
// val layoutManager = checkNotNull(recyclerView.layoutManager as LinearLayoutManager?)
// val firstVisiblePosition = layoutManager.findLastVisibleItemPosition()
// if (tempIndex + 1 == messagesList[firstVisiblePosition].msgLocalId && hasHistory && !loading) {
// loadMoreMessages()
// }
}
})
binding.ivBack.setOnClickListener { finish() }

View File

@ -12,7 +12,7 @@ import com.kaixed.kchat.ui.adapter.FriendListAdapter
import com.kaixed.kchat.utils.ConstantsUtil.getUsername
import com.kaixed.kchat.viewmodel.FriendListViewModel
class FriendListActivity : AppCompatActivity() {
class FriendListActivity : BaseActivity() {
private lateinit var binding: ActivityFriendListBinding
private val friendListViewModel: FriendListViewModel by viewModels()
private var friendList: MutableList<FriendItem> = mutableListOf()

View File

@ -1,15 +1,18 @@
package com.kaixed.kchat.ui.activity
import android.annotation.SuppressLint
import android.content.Intent
import android.os.Bundle
import androidx.activity.enableEdgeToEdge
import androidx.appcompat.app.AppCompatActivity
import com.kaixed.kchat.databinding.ActivityLaunchBinding
import com.kaixed.kchat.utils.Constants.MMKV_COMMON_DATA
import com.kaixed.kchat.utils.Constants.MMKV_USER_SESSION
import com.kaixed.kchat.utils.Constants.STATUS_BAR_HEIGHT
import com.kaixed.kchat.utils.Constants.USER_LOGIN_STATUS
import com.tencent.mmkv.MMKV
class LaunchActivity : AppCompatActivity() {
class LaunchActivity : BaseActivity() {
private lateinit var binding: ActivityLaunchBinding
@ -18,7 +21,12 @@ class LaunchActivity : AppCompatActivity() {
enableEdgeToEdge()
binding = ActivityLaunchBinding.inflate(layoutInflater)
setContentView(binding.root)
val mmkvData: MMKV = MMKV.mmkvWithID(MMKV_COMMON_DATA)
mmkvData.putInt(STATUS_BAR_HEIGHT, getStatusBarHeight())
val mmkv = MMKV.mmkvWithID(MMKV_USER_SESSION)
if (mmkv.decodeBool(USER_LOGIN_STATUS)) {
navigateToMain()
}
@ -26,10 +34,24 @@ class LaunchActivity : AppCompatActivity() {
setOnClickListener()
}
@SuppressLint("DiscouragedApi", "InternalInsetResource")
private fun getStatusBarHeight(): Int {
var result = 0
val resourceId: Int =
resources.getIdentifier("status_bar_height", "dimen", "android")
if (resourceId > 0) {
result = resources.getDimensionPixelSize(resourceId)
}
return result
}
private fun navigateToMain() {
val intent = Intent(this, MainActivity::class.java)
startActivity(intent)
finish()
return
}
private fun setOnClickListener() {

View File

@ -1,355 +1,134 @@
package com.kaixed.kchat.ui.activity
import android.animation.Animator
import android.animation.AnimatorListenerAdapter
import android.animation.ObjectAnimator
import android.annotation.SuppressLint
import android.content.ComponentName
import android.content.Context
import android.content.Intent
import android.content.ServiceConnection
import android.graphics.Color
import android.graphics.drawable.ColorDrawable
import android.os.Bundle
import android.os.IBinder
import android.view.View
import androidx.activity.enableEdgeToEdge
import androidx.appcompat.app.AppCompatActivity
import androidx.recyclerview.widget.LinearLayoutManager
import androidx.core.content.ContextCompat
import androidx.core.view.WindowCompat
import androidx.fragment.app.Fragment
import com.kaixed.kchat.R
import com.kaixed.kchat.data.objectbox.ObjectBox.get
import com.kaixed.kchat.data.objectbox.entity.ChatLists
import com.kaixed.kchat.data.objectbox.entity.ChatLists_
import com.kaixed.kchat.data.objectbox.entity.Messages
import com.kaixed.kchat.databinding.ActivityMainBinding
import com.kaixed.kchat.model.HomeItem
import com.kaixed.kchat.service.WebSocketService
import com.kaixed.kchat.service.WebSocketService.LocalBinder
import com.kaixed.kchat.ui.adapter.ChatListAdapter
import com.kaixed.kchat.ui.adapter.MyGridAdapter
import com.kaixed.kchat.ui.i.OnChatListItemClickListener
import com.kaixed.kchat.utils.Constants.MMKV_COMMON_DATA
import com.tencent.mmkv.MMKV
import io.objectbox.Box
import com.kaixed.kchat.ui.fragment.ContactFragment
import com.kaixed.kchat.ui.fragment.DiscoveryFragment
import com.kaixed.kchat.ui.fragment.HomeFragment
import com.kaixed.kchat.ui.fragment.MineFragment
/**
* @Author: kaixed
* @Date: 2024/5/26 10:02
*/
class MainActivity : AppCompatActivity(), OnChatListItemClickListener {
private var binding: ActivityMainBinding? = null
private var chatLists: MutableList<ChatLists> = ArrayList()
private var chatListAdapter: ChatListAdapter? = null
private var chatListsBox: Box<ChatLists>? = null
private var messagesBox: Box<Messages>? = null
private var updateUsername: String? = null
private val items: MutableList<HomeItem> = ArrayList()
private var webSocketService: WebSocketService? = null
private var isFlipped = false
private var isBound = false
private val mContext: Context = this
class MainActivity : BaseActivity(), View.OnClickListener {
private lateinit var binding: ActivityMainBinding
private var colorMain = 0
private var colorBlack = 0
companion object {
private const val KEY_HOME_FRAGMENT = 10001
private const val KEY_CONTACT_FRAGMENT = 10002
private const val KEY_DISCOVERY_FRAGMENT = 10003
private const val KEY_MINE_FRAGMENT = 10004
}
private val fragments = mutableMapOf<Int, Fragment>()
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
this.enableEdgeToEdge()
enableEdgeToEdge()
// 设置透明状态栏
WindowCompat.setDecorFitsSystemWindows(window, false)
binding = ActivityMainBinding.inflate(layoutInflater)
setContentView(binding!!.root)
setContentView(binding.root)
chatListsBox = get().boxFor(ChatLists::class.java)
messagesBox = get().boxFor(Messages::class.java)
colorMain = ContextCompat.getColor(this, R.color.green)
colorBlack = ContextCompat.getColor(this, R.color.black)
initView()
initFragment()
startService()
setOnClick()
updateSelection(KEY_HOME_FRAGMENT)
}
private fun setOnClick() {
binding!!.ivMessage.setOnClickListener {
val intent = Intent(
this,
MessageActivity::class.java
)
startActivity(intent)
}
binding!!.ivSearch.setOnClickListener {
val intent =
Intent(mContext, SearchActivity::class.java)
startActivity(intent)
}
private fun initFragment() {
fragments[KEY_HOME_FRAGMENT] = HomeFragment()
fragments[KEY_CONTACT_FRAGMENT] = ContactFragment()
fragments[KEY_DISCOVERY_FRAGMENT] = DiscoveryFragment()
fragments[KEY_MINE_FRAGMENT] = MineFragment()
binding!!.ifvAvatar.setOnClickListener {
val intent =
Intent(mContext, ProfileActivity::class.java)
startActivity(intent)
}
}
private fun flipImage(v: View) {
val flipAnimation = if (isFlipped) {
ObjectAnimator.ofFloat(v, "rotationX", 180f, 0f)
} else {
ObjectAnimator.ofFloat(v, "rotationX", 0f, 180f)
}
flipAnimation.setDuration(0)
flipAnimation.start()
isFlipped = !isFlipped
}
@SuppressLint("NotifyDataSetChanged")
fun notifyData() {
chatListAdapter!!.notifyDataSetChanged()
}
private fun startService() {
val intent = Intent(
this@MainActivity,
WebSocketService::class.java
)
startService(intent)
}
private fun observeLiveData() {
if (webSocketService == null) {
return
}
webSocketService!!.liveData.observe(
this
) { messages: Messages ->
if ("0" == messages.type) {
processMessage(messages)
supportFragmentManager.beginTransaction().apply {
fragments.values.forEach { fragment ->
add(R.id.fl_main, fragment, fragment.javaClass.simpleName)
hide(fragment)
}
}
}
private fun processMessage(messages: Messages) {
val talkerId = messages.takerId
val content = messages.content
val timestamp = messages.timestamp
val chatList = createChatList(talkerId, content, timestamp)
val index = findChatListIndex(talkerId)
if (index == -1) {
chatLists.add(chatList)
} else {
updateChatList(chatLists[index], content, timestamp)
commit()
}
runOnUiThread { this.notifyData() }
isInDb(chatList)
showFragment(KEY_HOME_FRAGMENT)
}
private fun createChatList(talkerId: String, content: String, timestamp: Long): ChatLists {
return ChatLists(
0L,
talkerId,
talkerId,
"1",
content,
timestamp,
1
)
}
private fun findChatListIndex(talkerId: String): Int {
for (i in chatLists.indices) {
if (chatLists[i].talkerId == talkerId) {
return i
private fun showFragment(key: Int) {
supportFragmentManager.beginTransaction().apply {
fragments.values.forEach { fragment ->
hide(fragment)
if (fragments[key] == fragment) {
show(fragment)
}
}
}
return -1
}
private fun updateChatList(chatList: ChatLists, content: String, timestamp: Long) {
chatList.lastContent = content
chatList.timestamp = timestamp
}
private fun isInDb(chatList: ChatLists) {
// 查询数据库中是否已经存在该talkerId的记录
val existingChatList = chatListsBox
?.query(ChatLists_.talkerId.equal(chatList.talkerId))
?.build()
?.findFirst()
if (existingChatList != null) {
// 如果存在,更新内容和时间戳
existingChatList.lastContent = chatList.lastContent
existingChatList.timestamp = chatList.timestamp
chatListsBox!!.put(existingChatList)
} else {
// 如果不存在,添加新的记录
chatListsBox!!.put(chatList)
commit()
}
}
private fun updateChatLists() {
val kv = MMKV.mmkvWithID(MMKV_COMMON_DATA)
val msgLocalId = kv.getLong("msgLocalId", -1L)
if (msgLocalId != -1L) {
val messages = messagesBox!![msgLocalId]
processMessage(messages)
kv.remove("msgLocalId")
}
}
private var connection: ServiceConnection = object : ServiceConnection {
override fun onServiceConnected(className: ComponentName, service: IBinder) {
val binder = service as LocalBinder
webSocketService = binder.getService()
isBound = true
observeLiveData()
}
override fun onServiceDisconnected(arg0: ComponentName) {
isBound = false
}
}
private fun initView() {
setupGridView()
setupRecycleView()
setupMoreOptionsToggle()
binding.clHome.setOnClickListener(this)
binding.clHome.tag = KEY_HOME_FRAGMENT
binding.clContact.setOnClickListener(this)
binding.clContact.tag = KEY_CONTACT_FRAGMENT
binding.clDiscovery.setOnClickListener(this)
binding.clDiscovery.tag = KEY_DISCOVERY_FRAGMENT
binding.clMine.setOnClickListener(this)
binding.clMine.tag = KEY_MINE_FRAGMENT
}
private fun setupMoreOptionsToggle() {
binding!!.ivMore.setOnClickListener { v ->
flipImage(v)
val gridViewHeight = binding!!.gridView.height
val startAt: Int
val endAt: Int
if (isFlipped) {
binding!!.gridView.visibility = View.VISIBLE
startAt = 0
endAt = gridViewHeight
} else {
startAt = gridViewHeight
endAt = 0
}
createAnimator(startAt, endAt).start()
}
override fun onClick(view: View) {
val key = view.tag as Int
showFragment(key)
updateSelection(key)
}
private fun createAnimator(start: Int, end: Int): ObjectAnimator {
val animator = ObjectAnimator.ofInt(binding!!.linearlayout, "top", start, end)
val duration: Long = 500
animator.setDuration(duration)
animator.addListener(object : AnimatorListenerAdapter() {
override fun onAnimationStart(animation: Animator) {
super.onAnimationStart(animation)
binding!!.ivMore.isEnabled = false
private fun updateSelection(selectedKey: Int) {
clearSelection()
when (selectedKey) {
KEY_HOME_FRAGMENT -> {
binding.ivHome.isSelected = true
binding.tvHome.setTextColor(colorMain)
}
override fun onAnimationEnd(animation: Animator) {
super.onAnimationEnd(animation)
if (!isFlipped) {
binding!!.gridView.visibility = View.INVISIBLE
}
binding!!.ivMore.isEnabled = true
KEY_CONTACT_FRAGMENT -> {
binding.ivContact.isSelected = true
binding.tvContact.setTextColor(colorMain)
}
})
return animator
}
private fun setupRecycleView() {
if (chatListsBox!!.all != null) {
chatLists = chatListsBox!!.all
}
chatListAdapter = ChatListAdapter(chatLists, this)
binding!!.recycleChatList.layoutManager =
LinearLayoutManager(this, LinearLayoutManager.VERTICAL, false)
binding!!.recycleChatList.adapter = chatListAdapter
chatListAdapter!!.setItemListener(this)
}
KEY_DISCOVERY_FRAGMENT -> {
binding.ivDiscovery.isSelected = true
binding.tvDiscovery.setTextColor(colorMain)
}
private fun setupGridView() {
initMenuData()
val myGridAdapter = MyGridAdapter(this, items)
binding!!.gridView.adapter = myGridAdapter
binding!!.gridView.selector = ColorDrawable(Color.TRANSPARENT)
binding!!.gridView.setOnItemClickListener { _, _, position, _ ->
when (position) {
0 -> {}
2 -> {
val intent =
Intent(
this@MainActivity,
AddFriendsActivity::class.java
)
startActivity(intent)
}
4 -> {
val intent2 =
Intent(
this@MainActivity,
ContactUpdatesActivity::class.java
)
startActivity(intent2)
}
6 -> {
val intent1 =
Intent(
this@MainActivity,
FriendListActivity::class.java
)
startActivity(intent1)
}
else -> finish()
KEY_MINE_FRAGMENT -> {
binding.ivMine.isSelected = true
binding.tvMine.setTextColor(colorMain)
}
}
}
private fun initMenuData() {
items.add(HomeItem("更换背景", true, R.drawable.ic_switch))
items.add(HomeItem("创建群聊", false, R.drawable.ic_troop))
items.add(HomeItem("新朋友", true, R.drawable.ic_friend))
items.add(HomeItem("夜间模式", true, R.drawable.ic_night))
items.add(HomeItem("好友动态", false, R.drawable.ic_qzone))
items.add(HomeItem("扫一扫", false, R.drawable.ic_scan))
items.add(HomeItem("通讯录", true, R.drawable.ic_clock_in))
items.add(HomeItem("关闭应用", false, R.drawable.ic_exit))
}
private fun clearSelection() {
binding.ivHome.isSelected = false
binding.ivContact.isSelected = false
binding.ivDiscovery.isSelected = false
binding.ivMine.isSelected = false
override fun onRestart() {
super.onRestart()
updateChatLists()
}
override fun onStart() {
super.onStart()
val intent = Intent(
this,
WebSocketService::class.java
)
bindService(intent, connection, BIND_AUTO_CREATE)
}
override fun onStop() {
super.onStop()
if (isBound) {
unbindService(connection)
isBound = false
}
}
override fun onDestroy() {
super.onDestroy()
val intent = Intent(
this@MainActivity,
WebSocketService::class.java
)
stopService(intent)
}
override fun onItemClick(username: String?) {
this.updateUsername = username
binding.tvHome.setTextColor(colorBlack)
binding.tvContact.setTextColor(colorBlack)
binding.tvDiscovery.setTextColor(colorBlack)
binding.tvMine.setTextColor(colorBlack)
}
}

View File

@ -1,141 +0,0 @@
package com.kaixed.kchat.ui.activity
import android.annotation.SuppressLint
import android.os.Bundle
import android.view.MotionEvent
import android.view.View
import android.view.inputmethod.InputMethodManager
import android.widget.LinearLayout
import androidx.activity.enableEdgeToEdge
import androidx.appcompat.app.AppCompatActivity
import com.kaixed.kchat.databinding.ActivityTestBinding
import com.kaixed.kchat.utils.Constants
import com.tencent.mmkv.MMKV
class TestActivity : AppCompatActivity() {
private lateinit var binding: ActivityTestBinding
private lateinit var inputMethodManager: InputMethodManager
var keyboard: Int = MMKV.mmkvWithID(Constants.MMKV_COMMON_DATA)
.getInt("keyboardHeight", 200)
@SuppressLint("ClickableViewAccessibility")
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
binding = ActivityTestBinding.inflate(layoutInflater)
enableEdgeToEdge()
setContentView(binding.root)
inputMethodManager = getSystemService(INPUT_METHOD_SERVICE) as InputMethodManager
// 处理 EditText 的触摸事件
binding.etInput.setOnTouchListener { _, event ->
if (event.action == MotionEvent.ACTION_UP && binding.clFunctionPanel.isShown) {
lockContentViewHeight()
hideEmojiPanel(true)
unlockContentViewHeight()
}
false
}
// 处理 RecyclerView 的触摸事件
// binding.recycleChatList.setOnTouchListener { _, motionEvent ->
// if (motionEvent.action == MotionEvent.ACTION_UP) {
// if (binding.clFunctionPanel.isShown) {
// hideEmojiPanel(false)
// } else if (isSoftKeyboardShown()) {
// hideSoftKeyboard()
// }
// }
// false
// }
// 表情面板切换按钮点击事件
binding.ivEmoji.setOnClickListener {
if (binding.clFunctionPanel.isShown) {
lockContentViewHeight()
hideEmojiPanel(true)
unlockContentViewHeight()
} else {
if (isSoftKeyboardShown()) {
lockContentViewHeight()
showEmojiPanel()
unlockContentViewHeight()
} else {
showEmojiPanel()
}
}
}
}
private fun lockContentViewHeight() {
val layoutParams = binding.recycleChatList.layoutParams as LinearLayout.LayoutParams
layoutParams.height = binding.recycleChatList.height
layoutParams.weight = 0f
binding.recycleChatList.layoutParams = layoutParams
}
private fun unlockContentViewHeight() {
binding.recycleChatList.postDelayed({
val layoutParams = binding.recycleChatList.layoutParams as LinearLayout.LayoutParams
layoutParams.weight = 1f
binding.recycleChatList.layoutParams = layoutParams
}, 200)
}
private fun getSoftKeyboardHeight(): Int {
return keyboard
}
private fun getSoftKeyboardHeightLocalValue(): Int {
return keyboard
}
private fun isSoftKeyboardShown(): Boolean {
return getSoftKeyboardHeight() != 0
}
private fun showSoftKeyboard(saveSoftKeyboardHeight: Boolean) {
binding.etInput.requestFocus()
inputMethodManager.showSoftInput(binding.etInput, 0)
if (saveSoftKeyboardHeight) {
binding.etInput.postDelayed({
getSoftKeyboardHeight()
}, 200)
}
}
private fun hideSoftKeyboard() {
inputMethodManager.hideSoftInputFromWindow(binding.etInput.windowToken, 0)
}
private fun showEmojiPanel() {
var softKeyboardHeight = getSoftKeyboardHeight()
if (softKeyboardHeight == 0) {
softKeyboardHeight = getSoftKeyboardHeightLocalValue()
} else {
hideSoftKeyboard()
}
binding.clFunctionPanel.layoutParams.height = softKeyboardHeight
binding.clFunctionPanel.visibility = View.VISIBLE
}
private fun hideEmojiPanel(showSoftKeyboard: Boolean) {
if (binding.clFunctionPanel.isShown) {
binding.clFunctionPanel.visibility = View.GONE
if (showSoftKeyboard) {
showSoftKeyboard(false)
}
}
}
override fun onBackPressed() {
if (binding.clFunctionPanel.isShown) {
hideEmojiPanel(false)
} else {
super.onBackPressed()
}
}
}

View File

@ -1,5 +1,6 @@
package com.kaixed.kchat.ui.adapter
import android.annotation.SuppressLint
import android.content.Context
import android.content.Intent
import android.view.LayoutInflater
@ -7,6 +8,7 @@ import android.view.ViewGroup
import androidx.recyclerview.widget.RecyclerView
import androidx.recyclerview.widget.RecyclerView.ViewHolder
import com.bumptech.glide.Glide
import com.kaixed.kchat.databinding.ContactRecycleFooterItemBinding
import com.kaixed.kchat.databinding.FriendRecycleItemBinding
import com.kaixed.kchat.model.friend.FriendItem
import com.kaixed.kchat.ui.activity.ChatActivity
@ -16,30 +18,80 @@ import com.kaixed.kchat.ui.activity.ChatActivity
* @Date: 2024/10/14 14:47
*/
class FriendListAdapter(private val items: MutableList<FriendItem>, private val context: Context) :
RecyclerView.Adapter<FriendListAdapter.MyViewHolder>() {
class MyViewHolder(val binding: FriendRecycleItemBinding) : ViewHolder(binding.root)
RecyclerView.Adapter<ViewHolder>() {
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): MyViewHolder {
val binding = FriendRecycleItemBinding.inflate(
LayoutInflater.from(parent.context),
parent,
false
)
return MyViewHolder(binding)
class ItemViewHolder(val binding: FriendRecycleItemBinding) : ViewHolder(binding.root)
class FooterViewHolder(val binding: ContactRecycleFooterItemBinding) : ViewHolder(binding.root)
companion object {
const val TYPE_ITEM: Int = 0
const val TYPE_FOOTER: Int = 1
}
override fun onBindViewHolder(holder: MyViewHolder, position: Int) {
val item = items[position]
holder.binding.tvSendMessage.setOnClickListener {
val intent = Intent(context, ChatActivity::class.java)
intent.putExtra("friendId", item.username)
context.startActivity(intent)
private val defaultItems = listOf(
com.kaixed.kchat.R.drawable.ic_contact_new_friend,
com.kaixed.kchat.R.drawable.ic_contact_group,
com.kaixed.kchat.R.drawable.ic_contact_label,
com.kaixed.kchat.R.drawable.ic_contact_public_account,
com.kaixed.kchat.R.drawable.ic_contact_service_account
)
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
return when (viewType) {
TYPE_FOOTER -> {
val binding = ContactRecycleFooterItemBinding.inflate(
LayoutInflater.from(parent.context),
parent,
false
)
FooterViewHolder(binding)
}
else -> {
val binding = FriendRecycleItemBinding.inflate(
LayoutInflater.from(parent.context),
parent,
false
)
ItemViewHolder(binding)
}
}
holder.binding.tvNickname.text = item.nickname
holder.binding.tvSignature.text = item.signature
Glide.with(context).load(item.avatarUrl).into(holder.binding.ifvAvatar)
}
override fun getItemCount(): Int = items.size
@SuppressLint("SetTextI18n")
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
when (holder) {
is FooterViewHolder -> {
holder.binding.tvTip.text = "${itemCount - defaultItems.size - 1} 个朋友"
}
is ItemViewHolder -> {
val item = items[position]
holder.binding.tvNickname.text = item.nickname
if (position <= defaultItems.size - 1) {
holder.binding.ifvAvatar.setImageResource(defaultItems[position])
holder.binding.ifvAvatar.setBackgroundColor(context.getColor(com.kaixed.kchat.R.color.gray))
} else {
Glide.with(context).load(item.avatarUrl).into(holder.binding.ifvAvatar)
holder.binding.root.setOnClickListener {
val intent = Intent(context, ChatActivity::class.java)
intent.putExtra("friendId", item.username)
context.startActivity(intent)
}
}
}
}
}
override fun getItemCount(): Int = items.size + 1
override fun getItemViewType(position: Int): Int {
return if (position + 1 == getItemCount()) {
TYPE_FOOTER
} else {
TYPE_ITEM
}
}
}

View File

@ -0,0 +1,47 @@
package com.kaixed.kchat.ui.base
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.core.view.updatePadding
import androidx.fragment.app.Fragment
import androidx.viewbinding.ViewBinding
import com.kaixed.kchat.model.friend.FriendItem
import com.kaixed.kchat.utils.ConstantsUtil.getStatusBarHeight
/**
* @Author: kaixed
* @Date: 2024/10/31 11:04
*/
abstract class BaseFragment<VB : ViewBinding> : Fragment() {
private var _binding: VB? = null
protected val binding get() = _binding!!
override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
_binding = inflateBinding(inflater, container)
return binding.root
}
abstract fun inflateBinding(inflater: LayoutInflater, container: ViewGroup?): VB
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
setupStatusBarPadding(binding.root)
}
private fun setupStatusBarPadding(rootView: View) {
val statusBarHeight = getStatusBarHeight()
rootView.updatePadding(top = statusBarHeight)
}
override fun onDestroyView() {
super.onDestroyView()
_binding = null
}
}

View File

@ -0,0 +1,102 @@
package com.kaixed.kchat.ui.fragment
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.fragment.app.viewModels
import androidx.recyclerview.widget.LinearLayoutManager
import com.kaixed.kchat.R
import com.kaixed.kchat.databinding.FragmentContactBinding
import com.kaixed.kchat.model.friend.FriendItem
import com.kaixed.kchat.ui.adapter.FriendListAdapter
import com.kaixed.kchat.ui.base.BaseFragment
import com.kaixed.kchat.utils.ConstantsUtil.getUsername
import com.kaixed.kchat.viewmodel.FriendListViewModel
class ContactFragment : BaseFragment<FragmentContactBinding>() {
private val friendListViewModel: FriendListViewModel by viewModels()
private var friendList: MutableList<FriendItem> = mutableListOf()
companion object {
private const val TAG = "ContactFragment"
}
override fun inflateBinding(
inflater: LayoutInflater,
container: ViewGroup?
): FragmentContactBinding {
return FragmentContactBinding.inflate(inflater, container, false)
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
getDefaultItem()
getFriendList(getUsername())
binding.recycleFriendList.layoutManager =
LinearLayoutManager(requireContext(), LinearLayoutManager.VERTICAL, false)
binding.recycleFriendList.adapter = FriendListAdapter(friendList, requireContext())
}
private fun getFriendList(username: String) {
friendListViewModel.getFriendList(username).observe(requireActivity()) { value ->
value?.let {
friendList.addAll(value)
binding.recycleFriendList.adapter?.notifyDataSetChanged()
}
}
}
private fun getDefaultItem() {
friendList.add(
FriendItem(
username = "",
avatarUrl = "",
nickname = "新的朋友",
remark = "",
signature = ""
)
)
friendList.add(
FriendItem(
username = "",
avatarUrl = "",
nickname = "群聊",
remark = "",
signature = ""
)
)
friendList.add(
FriendItem(
username = "",
avatarUrl = "",
nickname = "标签",
remark = "",
signature = ""
)
)
friendList.add(
FriendItem(
username = "",
avatarUrl = "",
nickname = "公众号",
remark = "",
signature = ""
)
)
friendList.add(
FriendItem(
username = "",
avatarUrl = "",
nickname = "服务号",
remark = "",
signature = ""
)
)
}
}

View File

@ -0,0 +1,23 @@
package com.kaixed.kchat.ui.fragment
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import com.kaixed.kchat.databinding.FragmentDiscoveryBinding
import com.kaixed.kchat.ui.base.BaseFragment
class DiscoveryFragment : BaseFragment<FragmentDiscoveryBinding>() {
override fun inflateBinding(
inflater: LayoutInflater,
container: ViewGroup?
): FragmentDiscoveryBinding {
return FragmentDiscoveryBinding.inflate(inflater, container, false)
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
}
}

View File

@ -0,0 +1,371 @@
package com.kaixed.kchat.ui.fragment
import android.animation.Animator
import android.animation.AnimatorListenerAdapter
import android.animation.ObjectAnimator
import android.annotation.SuppressLint
import android.content.ComponentName
import android.content.Context
import android.content.Intent
import android.content.ServiceConnection
import android.graphics.Color
import android.graphics.drawable.ColorDrawable
import android.os.Bundle
import android.os.IBinder
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.appcompat.app.AppCompatActivity.BIND_AUTO_CREATE
import androidx.recyclerview.widget.LinearLayoutManager
import com.kaixed.kchat.R
import com.kaixed.kchat.data.objectbox.ObjectBox.get
import com.kaixed.kchat.data.objectbox.entity.ChatLists
import com.kaixed.kchat.data.objectbox.entity.ChatLists_
import com.kaixed.kchat.data.objectbox.entity.Messages
import com.kaixed.kchat.databinding.FragmentHomeBinding
import com.kaixed.kchat.model.HomeItem
import com.kaixed.kchat.service.WebSocketService
import com.kaixed.kchat.service.WebSocketService.LocalBinder
import com.kaixed.kchat.ui.activity.AddFriendsActivity
import com.kaixed.kchat.ui.activity.ContactUpdatesActivity
import com.kaixed.kchat.ui.activity.FriendListActivity
import com.kaixed.kchat.ui.activity.MessageActivity
import com.kaixed.kchat.ui.activity.ProfileActivity
import com.kaixed.kchat.ui.activity.SearchActivity
import com.kaixed.kchat.ui.adapter.ChatListAdapter
import com.kaixed.kchat.ui.adapter.MyGridAdapter
import com.kaixed.kchat.ui.base.BaseFragment
import com.kaixed.kchat.ui.i.OnChatListItemClickListener
import com.kaixed.kchat.utils.Constants.MMKV_COMMON_DATA
import com.tencent.mmkv.MMKV
import io.objectbox.Box
class HomeFragment : BaseFragment<FragmentHomeBinding>(), OnChatListItemClickListener {
private var chatLists: MutableList<ChatLists> = ArrayList()
private var chatListAdapter: ChatListAdapter? = null
private var chatListsBox: Box<ChatLists>? = null
private var messagesBox: Box<Messages>? = null
private var updateUsername: String? = null
private val items: MutableList<HomeItem> = ArrayList()
private var webSocketService: WebSocketService? = null
private var flipped = false
private var bound = false
private lateinit var context: Context
override fun inflateBinding(
inflater: LayoutInflater,
container: ViewGroup?
): FragmentHomeBinding {
return FragmentHomeBinding.inflate(inflater, container, false)
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
context = requireContext()
chatListsBox = get().boxFor(ChatLists::class.java)
messagesBox = get().boxFor(Messages::class.java)
initView()
startService()
setOnClick()
}
private fun setOnClick() {
binding.ivMessage.setOnClickListener {
val intent = Intent(
context,
MessageActivity::class.java
)
startActivity(intent)
}
binding.ivSearch.setOnClickListener {
val intent =
Intent(context, SearchActivity::class.java)
startActivity(intent)
}
binding.ifvAvatar.setOnClickListener {
val intent =
Intent(context, ProfileActivity::class.java)
startActivity(intent)
}
}
private fun flipImage(v: View) {
val flipAnimation = if (flipped) {
ObjectAnimator.ofFloat(v, "rotationX", 180f, 0f)
} else {
ObjectAnimator.ofFloat(v, "rotationX", 0f, 180f)
}
flipAnimation.setDuration(0)
flipAnimation.start()
flipped = !flipped
}
@SuppressLint("NotifyDataSetChanged")
fun notifyData() {
chatListAdapter!!.notifyDataSetChanged()
}
private fun startService() {
val intent = Intent(
context,
WebSocketService::class.java
)
context.startService(intent)
}
private fun observeLiveData() {
if (webSocketService == null) {
return
}
webSocketService!!.liveData.observe(
this
) { messages: Messages ->
if ("0" == messages.type) {
processMessage(messages)
}
}
}
private fun processMessage(messages: Messages) {
val talkerId = messages.takerId
val content = messages.content
val timestamp = messages.timestamp
val chatList = createChatList(talkerId, content, timestamp)
val index = findChatListIndex(talkerId)
if (index == -1) {
chatLists.add(chatList)
} else {
updateChatList(chatLists[index], content, timestamp)
}
notifyData()
requireActivity().runOnUiThread { this.notifyData() }
isInDb(chatList)
}
private fun createChatList(talkerId: String, content: String, timestamp: Long): ChatLists {
return ChatLists(
0L,
talkerId,
talkerId,
"1",
content,
timestamp,
1
)
}
private fun findChatListIndex(talkerId: String): Int {
for (i in chatLists.indices) {
if (chatLists[i].talkerId == talkerId) {
return i
}
}
return -1
}
private fun updateChatList(chatList: ChatLists, content: String, timestamp: Long) {
chatList.lastContent = content
chatList.timestamp = timestamp
}
private fun isInDb(chatList: ChatLists) {
// 查询数据库中是否已经存在该talkerId的记录
val existingChatList = chatListsBox
?.query(ChatLists_.talkerId.equal(chatList.talkerId))
?.build()
?.findFirst()
if (existingChatList != null) {
// 如果存在,更新内容和时间戳
existingChatList.lastContent = chatList.lastContent
existingChatList.timestamp = chatList.timestamp
chatListsBox!!.put(existingChatList)
} else {
// 如果不存在,添加新的记录
chatListsBox!!.put(chatList)
}
}
private fun updateChatLists() {
val kv = MMKV.mmkvWithID(MMKV_COMMON_DATA)
val msgLocalId = kv.getLong("msgLocalId", -1L)
if (msgLocalId != -1L) {
val messages = messagesBox!![msgLocalId]
processMessage(messages)
kv.remove("msgLocalId")
}
}
private var connection: ServiceConnection = object : ServiceConnection {
override fun onServiceConnected(className: ComponentName, service: IBinder) {
val binder = service as LocalBinder
webSocketService = binder.getService()
bound = true
observeLiveData()
}
override fun onServiceDisconnected(arg0: ComponentName) {
bound = false
}
}
private fun initView() {
setupGridView()
setupRecycleView()
setupMoreOptionsToggle()
}
private fun setupMoreOptionsToggle() {
binding.ivMore.setOnClickListener { v ->
flipImage(v)
val gridViewHeight = binding.gridView.height
val startAt: Int
val endAt: Int
if (flipped) {
binding.gridView.visibility = View.VISIBLE
startAt = 0
endAt = gridViewHeight
} else {
startAt = gridViewHeight
endAt = 0
}
createAnimator(startAt, endAt).start()
}
}
private fun createAnimator(start: Int, end: Int): ObjectAnimator {
val animator = ObjectAnimator.ofInt(binding!!.linearlayout, "top", start, end)
val duration: Long = 500
animator.setDuration(duration)
animator.addListener(object : AnimatorListenerAdapter() {
override fun onAnimationStart(animation: Animator) {
super.onAnimationStart(animation)
binding.ivMore.isEnabled = false
}
override fun onAnimationEnd(animation: Animator) {
super.onAnimationEnd(animation)
if (!flipped) {
binding.gridView.visibility = View.INVISIBLE
}
binding.ivMore.isEnabled = true
}
})
return animator
}
private fun setupRecycleView() {
chatListsBox!!.all?.let {
chatLists = chatListsBox!!.all
}
chatListAdapter = ChatListAdapter(chatLists, context)
binding.recycleChatList.layoutManager =
LinearLayoutManager(context, LinearLayoutManager.VERTICAL, false)
binding.recycleChatList.adapter = chatListAdapter
chatListAdapter!!.setItemListener(this)
}
private fun setupGridView() {
initMenuData()
val myGridAdapter = MyGridAdapter(context, items)
binding.gridView.adapter = myGridAdapter
binding.gridView.selector = ColorDrawable(Color.TRANSPARENT)
binding.gridView.setOnItemClickListener { _, _, position, _ ->
when (position) {
0 -> {}
2 -> {
val intent =
Intent(
context,
AddFriendsActivity::class.java
)
startActivity(intent)
}
4 -> {
val intent2 =
Intent(
context,
ContactUpdatesActivity::class.java
)
startActivity(intent2)
}
6 -> {
val intent1 =
Intent(
context,
FriendListActivity::class.java
)
startActivity(intent1)
}
}
}
}
private fun initMenuData() {
items.add(HomeItem("更换背景", true, R.drawable.ic_switch))
items.add(HomeItem("创建群聊", false, R.drawable.ic_troop))
items.add(HomeItem("新朋友", true, R.drawable.ic_friend))
items.add(HomeItem("夜间模式", true, R.drawable.ic_night))
items.add(HomeItem("好友动态", false, R.drawable.ic_qzone))
items.add(HomeItem("扫一扫", false, R.drawable.ic_discovery_scan))
items.add(HomeItem("通讯录", true, R.drawable.ic_clock_in))
items.add(HomeItem("关闭应用", false, R.drawable.ic_exit))
}
override fun onResume() {
super.onResume()
updateChatLists()
}
override fun onStart() {
super.onStart()
val intent = Intent(
context,
WebSocketService::class.java
)
requireActivity().bindService(intent, connection, BIND_AUTO_CREATE)
}
override fun onStop() {
super.onStop()
if (bound) {
context.unbindService(connection)
bound = false
}
}
override fun onDestroy() {
super.onDestroy()
val intent = Intent(
context,
WebSocketService::class.java
)
context.stopService(intent)
}
override fun onItemClick(username: String?) {
this.updateUsername = username
}
}

View File

@ -0,0 +1,39 @@
package com.kaixed.kchat.ui.fragment
import android.content.Intent
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import com.kaixed.kchat.databinding.FragmentMineBinding
import com.kaixed.kchat.ui.activity.ProfileDetailActivity
import com.kaixed.kchat.ui.base.BaseFragment
class MineFragment : BaseFragment<FragmentMineBinding>() {
override fun inflateBinding(
inflater: LayoutInflater,
container: ViewGroup?
): FragmentMineBinding {
return FragmentMineBinding.inflate(inflater, container, false)
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
binding.clProfile.setOnClickListener {
startActivity(Intent(requireContext(), ProfileDetailActivity::class.java))
}
binding.ciSetting.setOnClickListener {
val bottomSheetFragment = MyBottomSheetFragment()
bottomSheetFragment.show(
requireActivity().supportFragmentManager,
bottomSheetFragment.tag
)
}
binding.ciSetting.setRedTipVisibility(true)
}
}

View File

@ -31,14 +31,18 @@ class CustomItem @JvmOverloads constructor(
val itemName = typedArray.getString(R.styleable.CustomItem_itemName) ?: ""
val itemIconSize = typedArray.getDimension(R.styleable.CustomItem_iconSize, 0f)
val itemIcon = typedArray.getResourceId(R.styleable.CustomItem_itemIcon, -1)
val itemLeftIcon = typedArray.getResourceId(R.styleable.CustomItem_itemLeftIcon, -1)
val itemIconRound = typedArray.getDimension(R.styleable.CustomItem_iconRound, 0f)
val itemDesc = typedArray.getString(R.styleable.CustomItem_itemDesc) ?: ""
val itemRedTip = typedArray.getBoolean(R.styleable.CustomItem_itemRedTip, false)
val isShowTopDivider =
typedArray.getBoolean(R.styleable.CustomItem_isTopDividerVisible, false)
val isShowBottomDivider =
typedArray.getBoolean(R.styleable.CustomItem_isBottomDividerVisible, false)
binding.viewRedTip.visibility = if (itemRedTip) View.VISIBLE else View.GONE
if (itemDesc.isNotEmpty()) {
binding.tvItemDesc.visibility = View.VISIBLE
binding.tvItemDesc.text = itemDesc
@ -46,6 +50,13 @@ class CustomItem @JvmOverloads constructor(
binding.tvItemDesc.visibility = View.GONE
}
if (itemLeftIcon != -1) {
binding.ivItemLeftIcon.visibility = View.VISIBLE
binding.ivItemLeftIcon.setImageResource(itemLeftIcon)
} else {
binding.ivItemIcon.visibility = View.GONE
}
if (itemIcon != -1) {
binding.ivItemIcon.visibility = View.VISIBLE
binding.ivItemIcon.setImageResource(itemIcon)
@ -61,7 +72,6 @@ class CustomItem @JvmOverloads constructor(
}
if (itemIconSize.toInt() != 0) {
binding.ivItemIcon.layoutParams.width =
(itemIconSize * displayMetrics.density).toInt()
binding.ivItemIcon.layoutParams.height =
@ -77,17 +87,12 @@ class CustomItem @JvmOverloads constructor(
binding.tvItemName.text = itemName
}
binding.decorationTop.visibility = if (isShowTopDivider) {
View.VISIBLE
} else {
View.GONE
}
binding.decorationTop.visibility =
if (isShowTopDivider) View.VISIBLE else View.GONE
binding.decorationBottom.visibility =
if (isShowBottomDivider) View.VISIBLE else View.GONE
binding.decorationBottom.visibility = if (isShowBottomDivider) {
View.VISIBLE
} else {
View.GONE
}
typedArray.recycle()
}
}
@ -95,4 +100,8 @@ class CustomItem @JvmOverloads constructor(
fun setOnItemClickListener(listener: OnClickListener) {
binding.root.setOnClickListener(listener)
}
fun setRedTipVisibility(visible: Boolean) {
binding.viewRedTip.visibility = if (visible) View.VISIBLE else View.GONE
}
}

View File

@ -16,6 +16,10 @@ object Constants {
const val MESSAGE_TYPE_FUNCTION: Int = 2
const val MESSAGE_TYPE_TITLE: Int = 2
const val STATUS_BAR_HEIGHT = "status_bar_height"
const val KEYBOARD_HEIGHT = "keyboardHeight"
const val KEYBOARD_HEIGHT_RATIO = 0.15F
const val KEYBOARD_DEFAULT_HEIGHT = 200
const val STATUS_BAR_DEFAULT_HEIGHT: Int = 10
}

View File

@ -1,8 +1,11 @@
package com.kaixed.kchat.utils
import com.kaixed.kchat.utils.Constants.KEYBOARD_DEFAULT_HEIGHT
import com.kaixed.kchat.utils.Constants.KEYBOARD_HEIGHT
import com.kaixed.kchat.utils.Constants.MMKV_COMMON_DATA
import com.kaixed.kchat.utils.Constants.MMKV_USER_SESSION
import com.kaixed.kchat.utils.Constants.STATUS_BAR_DEFAULT_HEIGHT
import com.kaixed.kchat.utils.Constants.STATUS_BAR_HEIGHT
import com.kaixed.kchat.utils.Constants.USERNAME_KEY
import com.tencent.mmkv.MMKV
@ -13,8 +16,11 @@ import com.tencent.mmkv.MMKV
object ConstantsUtil {
fun getKeyboardHeight(): Int = MMKV.mmkvWithID(MMKV_COMMON_DATA)
.getInt("keyboardHeight", KEYBOARD_DEFAULT_HEIGHT)
.getInt(KEYBOARD_HEIGHT, KEYBOARD_DEFAULT_HEIGHT)
fun getUsername(): String = MMKV.mmkvWithID(MMKV_USER_SESSION)
.getString(USERNAME_KEY, "").toString()
fun getStatusBarHeight(): Int = MMKV.mmkvWithID(MMKV_COMMON_DATA)
.getInt(STATUS_BAR_HEIGHT, STATUS_BAR_DEFAULT_HEIGHT)
}

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/ic_discovery_selected" android:state_selected="true" />
<item android:drawable="@drawable/ic_discovery_normal" />
</selector>

View File

@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48dp"
android:height="48dp"
android:viewportWidth="1024"
android:viewportHeight="1024">
<path
android:pathData="M509.7,935.4A427.2,427.2 0,1 1,937 508.3a427.7,427.7 0,0 1,-427.2 427.2zM509.7,142.5A365.7,365.7 0,1 0,875.5 508.3a366.1,366.1 0,0 0,-365.8 -365.7z"
android:fillColor="@color/black"/>
<path
android:pathData="M347.8,724.7A54.5,54.5 0,0 1,297 650.5l90.4,-233.5a54.4,54.4 0,0 1,31.1 -31.2l233.5,-90.4a54.5,54.5 0,0 1,70.5 70.5l-90.4,233.5a54.7,54.7 0,0 1,-31.2 31.2l-233.5,90.4a54.6,54.6 0,0 1,-19.7 3.7zM451.5,449.9L377.9,640l190.5,-73.5 73.4,-190.2zM677.9,362.3zM665,328.9z"
android:fillColor="@color/black"/>
</vector>

View File

@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48dp"
android:height="48dp"
android:viewportWidth="1024"
android:viewportHeight="1024">
<path
android:pathData="M380.5,640.2l190.2,-73.6 73.6,-190.2 -190.2,73.6 -73.6,190.2zM680.6,362.3v0.1,-0.1z"
android:fillColor="@color/green"/>
<path
android:pathData="M512.4,81.1a427.2,427.2 0,1 0,427.2 427.2,427.6 427.6,0 0,0 -427.2,-427.2zM725.2,366L634.9,599.5a54.4,54.4 0,0 1,-31.1 31.2l-233.6,90.4a54.5,54.5 0,0 1,-70.5 -70.5l90.4,-233.5a54.7,54.7 0,0 1,31.2 -31.2l233.5,-90.4a54.5,54.5 0,0 1,70.5 70.5z"
android:fillColor="@color/green"/>
</vector>

View File

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48dp"
android:height="48dp"
android:viewportWidth="1024"
android:viewportHeight="1024">
<path
android:fillColor="@color/black"
android:pathData="M923.6,424.8c0,-231.9 -184.3,-419.8 -411.6,-419.8 -227.3,0 -411.6,187.9 -411.6,419.8 0,7.4 0.7,14.5 1.1,21.7 -0.3,3.6 -1.1,7 -1.1,10.6 0,258.4 380,551.1 380,551.1s31.7,24.2 63.3,0c31.7,-24.2 380,-292.7 380,-551.1 0,-3.7 -0.7,-7.1 -1.1,-10.6C922.9,439.3 923.6,432.2 923.6,424.8L923.6,424.8zM512,586.3c-87.4,0 -158.3,-72.3 -158.3,-161.5 0,-89.2 70.9,-161.4 158.3,-161.4 87.5,0 158.3,72.3 158.3,161.4C670.3,514 599.4,586.3 512,586.3L512,586.3zM512,586.3" />
</vector>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/ic_main_selected" android:state_selected="true" />
<item android:drawable="@drawable/ic_main_normal" />
</selector>

View File

@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48dp"
android:height="48dp"
android:viewportWidth="1024"
android:viewportHeight="1024">
<path
android:pathData="M769.4,939.5H264.8a161.6,161.6 0,0 1,-160.7 -149.7l-25.6,-362.3A189.4,189.4 0,0 1,170.6 250.9l248.3,-149.2a190.2,190.2 0,0 1,196.4 0L863.6,250.9a189.4,189.4 0,0 1,92.2 176.7l-25.6,362.3a161.5,161.5 0,0 1,-160.8 149.5zM517.1,135.6a129,129 0,0 0,-66.6 18.5L202.2,303.3a128.6,128.6 0,0 0,-62.3 119.8l25.6,362.3a99.9,99.9 0,0 0,99.4 92.6h504.6a99.9,99.9 0,0 0,99.3 -92.6l25.6,-362.3a128.6,128.6 0,0 0,-62.3 -119.8L583.7,154.1a129,129 0,0 0,-66.6 -18.5z"
android:fillColor="@color/black"/>
<path
android:pathData="M517.1,763.4a165.4,165.4 0,1 1,165.4 -165.4,165.5 165.5,0 0,1 -165.4,165.4zM517.1,504.3a93.7,93.7 0,1 0,93.7 93.7A93.7,93.7 0,0 0,517.1 504.3z"
android:fillColor="@color/black"/>
</vector>

View File

@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48dp"
android:height="48dp"
android:viewportWidth="1024"
android:viewportHeight="1024">
<path
android:pathData="M512,504.3a93.7,93.7 0,1 0,93.7 93.7A93.8,93.8 0,0 0,512 504.3z"
android:fillColor="@color/green"/>
<path
android:pathData="M858.5,250.9l-248.3,-149.2a190.3,190.3 0,0 0,-196.4 0L165.5,250.9a189.8,189.8 0,0 0,-92.2 176.7l25.6,362.3a161.6,161.6 0,0 0,160.7 149.7h504.5a161.6,161.6 0,0 0,160.7 -149.7l25.6,-362.3A189.8,189.8 0,0 0,858.5 250.9zM512,763.4a165.4,165.4 0,1 1,165.4 -165.4,165.6 165.6,0 0,1 -165.4,165.4z"
android:fillColor="@color/green"/>
</vector>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/ic_message_selected" android:state_selected="true" />
<item android:drawable="@drawable/ic_message_normal" />
</selector>

View File

@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48dp"
android:height="48dp"
android:viewportWidth="1024"
android:viewportHeight="1024">
<path
android:pathData="M517.1,926.3L250.9,926.3a153.6,153.6 0,0 1,-153.6 -153.6v-266.2A419.3,419.3 0,0 1,813.6 209.9,419.5 419.5,0 0,1 517.1,926.3zM517.1,148a358.4,358.4 0,0 0,-358.4 358.4v266.2a92.2,92.2 0,0 0,92.2 92.2h266.2a358.4,358.4 0,0 0,8.7 -716.8c-2.9,0.1 -5.8,0.1 -8.7,0.1z"
android:fillColor="@color/black"/>
<path
android:pathData="M672.1,487.6H362.2a35.8,35.8 0,1 1,0 -71.7h309.9a35.8,35.8 0,0 1,0 71.7zM535.4,651.4H362.2a35.8,35.8 0,1 1,0 -71.7h173.2a35.8,35.8 0,0 1,0 71.7z"
android:fillColor="@color/black"/>
</vector>

View File

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48dp"
android:height="48dp"
android:viewportWidth="1024"
android:viewportHeight="1024">
<path
android:pathData="M813.6,209.9A419.4,419.4 0,0 0,97.3 506.5v266.2a153.6,153.6 0,0 0,153.6 153.6h266.2A419.3,419.3 0,0 0,813.6 209.9zM535.4,651.3L362.2,651.3a35.8,35.8 0,1 1,0 -71.7h173.2a35.8,35.8 0,0 1,0 71.7zM672.1,487.5L362.2,487.5a35.8,35.8 0,1 1,0 -71.7h309.9a35.8,35.8 0,0 1,0 71.7z"
android:fillColor="@color/green"/>
</vector>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/ic_mine_selected" android:state_selected="true" />
<item android:drawable="@drawable/ic_mine_normal" />
</selector>

View File

@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48dp"
android:height="48dp"
android:viewportWidth="1024"
android:viewportHeight="1024">
<path
android:pathData="M502.9,834.6a380.9,380.9 0,1 1,380.9 -380.9,381.4 381.4,0 0,1 -380.9,380.9zM502.9,134.1a319.5,319.5 0,1 0,319.5 319.5,319.8 319.8,0 0,0 -319.5,-319.3z"
android:fillColor="@color/black"/>
<path
android:pathData="M501.8,669.3a194.1,194.1 0,0 1,-168.4 -97.7,35.8 35.8,0 0,1 62.3,-35.5 121.8,121.8 0,0 0,214 -4.1,35.8 35.8,0 1,1 63.6,33.1A192.9,192.9 0,0 1,501.8 669.3z"
android:fillColor="@color/black"/>
<path
android:pathData="M835.1,949.6H170.9a30.7,30.7 0,1 1,0 -61.4H835.1a30.7,30.7 0,0 1,0 61.4z"
android:fillColor="@color/black"/>
</vector>

View File

@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48dp"
android:height="48dp"
android:viewportWidth="1024"
android:viewportHeight="1024">
<path
android:pathData="M512.9,72.9a380.9,380.9 0,1 0,380.9 380.9,381.3 381.3,0 0,0 -380.9,-380.9zM683.2,564.9a193.5,193.5 0,0 1,-339.9 6.6,35.8 35.8,0 1,1 62.3,-35.5 121.8,121.8 0,0 0,214 -4.1,35.8 35.8,0 1,1 63.6,33.1z"
android:fillColor="@color/green"/>
<path
android:pathData="M845.1,949.6H180.8a30.7,30.7 0,1 1,0 -61.4h664.2a30.7,30.7 0,0 1,0 61.4z"
android:fillColor="@color/green"/>
</vector>

View File

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="70dp" android:viewportHeight="1500" android:viewportWidth="1500" android:width="70dp">
<path android:fillColor="#07c160" android:pathData="M0,0h1500v1500h-1500z"/>
<path android:fillColor="#fff" android:pathData="M1244.5,954.1c-15.6,-78.2 -64,-203.4 -210.5,-236.1a165.7,165.7 0,0 0,89.6 -147.9c0,-91 -74,-166.4 -166.4,-166.4 -8.5,0 -15.6,1.4 -22.8,1.4a315.4,315.4 0,0 1,31.3 136.5A308.8,308.8 0,0 1,910.3 718C1046.8,799.1 1103.7,939.9 1125,1032.3h51.2c19.9,0 39.8,-8.5 52.6,-24.2 14.2,-14.2 19.9,-34.1 15.6,-54Z"/>
<path android:fillColor="#fff" android:pathData="M1052.5,1075c-22.8,-109.5 -89.6,-281.6 -293,-327.1 74,-38.4 125.2,-115.2 125.2,-204.8 0,-125.2 -103.8,-229 -230.4,-229S423.9,417.9 423.9,544.5c0,88.2 51.2,166.4 125.2,204.8C345.7,793.4 278.8,965.5 256.1,1073.6 250.4,1102 257.5,1130.4 274.5,1151.8s44.1,34.1 72.5,34.1L960.1,1185.9c28.4,0 54,-12.8 72.5,-34.1a89.2,89.2 0,0 0,19.9 -76.8Z"/>
</vector>

View File

@ -0,0 +1,7 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="70dp" android:viewportHeight="1500" android:viewportWidth="1500" android:width="70dp">
<path android:fillColor="#2782d7" android:pathData="M0,0h1500v1500h-1500z"/>
<path android:fillColor="#fff" android:pathData="M1139,308.2 L798.2,328.9a30.2,30.2 0,0 0,-19.4 8.7L322.8,793.7a50,50 0,0 0,0 70.7L635.6,1177.2a50,50 0,0 0,70.7 0L1162.3,721.1a29.7,29.7 0,0 0,8.7 -19.4l20.8,-340.6a49.9,49.9 0,0 0,-52.8 -52.9ZM1003.4,560.4A63.9,63.9 0,1 1,1067.3 496.5,63.9 63.9,0 0,1 1003.4,560.4Z"/>
</vector>

View File

@ -0,0 +1,11 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="70dp" android:viewportHeight="1500" android:viewportWidth="1500" android:width="70dp">
<path android:fillColor="#fa9d3b" android:pathData="M0,0H1500V1500H0Z"/>
<path android:fillColor="#fff" android:pathData="M701.7,744.9c113.4,0 205.4,-91.9 205.4,-205.4 0,-113.5 -91.9,-205.5 -205.4,-205.5C588.3,334 496.3,426 496.3,539.5c0,113.4 92,205.4 205.5,205.4Z"/>
<path android:fillColor="#fff" android:pathData="M853.3,993.2a206.1,206.1 0,0 1,81.6 -164.5A414.8,414.8 0,0 0,287.7 1145.6a19.2,19.2 0,0 0,19.2 20.5h640A206.2,206.2 0,0 1,853.3 993.2Z"/>
<path android:fillColor="#fff" android:pathData="M1058.3,839.1A154,154 0,1 0,1212.4 993.2,154 154,0 0,0 1058.3,839.1ZM1129.7,1009.1h-55.4L1074.3,1064.5a16,16 0,0 1,-32 0v-55.4L986.8,1009.1a16,16 0,0 1,0 -32h55.4L1042.1,921.7a16,16 0,0 1,32 0v55.4h55.4a16,16 0,0 1,0 32Z"/>
</vector>

View File

@ -0,0 +1,7 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="70dp" android:viewportHeight="1500" android:viewportWidth="1500" android:width="70dp">
<path android:fillColor="#1485ee" android:pathData="M0,0H1500V1500H0Z"/>
<path android:fillColor="#fff" android:pathData="M466.3,304.1L1033.7,304.1C1090.7,304.1 1136.9,351.1 1136.9,409L1136.9,1091c0,57.9 -46.2,104.9 -103.2,104.9L466.3,1195.9c-57,0 -103.2,-47 -103.2,-104.9L363.1,409C363.1,351.1 409.3,304.1 466.3,304.1ZM549.9,592.6c44.3,0 80.1,-35.3 80.1,-78.7s-35.8,-78.7 -80,-78.7 -80.1,35.3 -80.1,78.7 35.8,78.7 80.1,78.7ZM469.9,697.5v52.5L896.8,750L896.8,697.5L469.9,697.5ZM469.9,802.5L469.9,854.9L896.8,854.9L896.8,802.5L469.9,802.5ZM469.9,907.4v52.5L736.6,959.8L736.6,907.4L469.9,907.4Z"/>
</vector>

View File

@ -0,0 +1,7 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="70dp" android:viewportHeight="1500" android:viewportWidth="1500" android:width="70dp">
<path android:fillColor="#1485ee" android:pathData="M0,0H1500V1500H0Z"/>
<path android:fillColor="#fff" android:pathData="M857.7,871.9c0,-78.3 127.9,-127.9 127.9,-309.6 0,-153.4 -104.8,-241.5 -235.6,-241.5 -130.7,0 -235.5,88.1 -235.5,241.5C514.5,744 642.3,793.6 642.3,871.9c0,126.8 -289.1,91.8 -289.1,215 0,103.5 110.4,91.8 110.4,91.8L1036.4,1178.8c44.5,0 110.4,-18.6 110.4,-91.8C1146.9,963.7 857.7,998.7 857.7,871.9ZM749.8,1134.3l-70,-90.4 46.7,-158.2L773.1,885.7l46.7,158.2Z"/>
</vector>

View File

@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="120dp"
android:height="120dp"
android:viewportWidth="120"
android:viewportHeight="120">
<path
android:pathData="M0,0h120v120H0z"
android:strokeWidth="1"
android:fillColor="#f1f1f1"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M50.87,61.3C54.72,67.43 48.32,70.2 45.65,71.74 34.14,78.29 29.12,80.74 29.12,83.92V88.27C29.12,89.67 30.16,90.88 31.73,90.88H88.27C89.84,90.88 90.88,89.67 90.88,88.27V83.92C90.88,80.74 85.86,78.29 74.35,71.74 71.68,70.2 65.28,67.43 69.13,61.3 72.56,56.22 75.23,54.15 75.22,45.65 75.23,37.57 69.26,29.12 60.43,29.12c-9.7,0 -15.67,8.46 -15.66,16.53C44.77,54.15 47.44,56.22 50.87,61.3z"
android:strokeWidth="1"
android:fillColor="#c9c9c9"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
</vector>

View File

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M12.815,2.553c-0.552,0 -1,0.448 -1,1V13.88L11.812,14.325C11.812,15.479 11.474,15.679 10.167,15.784 9.711,15.82 9.232,15.838 8.754,15.966 6.487,16.574 5.037,18.513 5.515,20.297 5.993,22.082 8.219,23.036 10.486,22.428 12.496,21.89 13.864,20.305 13.815,18.709V7.99C13.815,7.877 13.909,7.786 14.021,7.794 14.64,7.842 15.485,8.044 16.098,8.846 16.708,9.642 16.667,10.417 16.628,11.165 16.622,11.288 16.615,11.412 16.612,11.534 16.61,11.61 16.69,11.657 16.75,11.609 17.564,10.958 18.352,8.638 17.468,6.716 16.688,5.02 15.127,4.295 14.14,3.985 13.95,3.926 13.815,3.752 13.815,3.553v0c0,-0.552 -0.448,-1 -1,-1z"
android:fillColor="#FA5151"/>
</vector>

View File

@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#2B91F0"
android:fillType="nonZero"
android:pathData="M8,17.7C7.061,17.7 6.3,16.939 6.3,16 6.3,15.061 7.061,14.3 8,14.3H17.634C17.882,14.3 18.044,14.173 18.061,14.085V12.113C18.061,11.349 18.355,10.613 18.834,10.143 19.187,9.673 19.809,9.3 20.38,9.3 21.302,9.3 21.978,10.103 21.851,10.985 21.843,11.069 21.83,11.208 21.817,11.367 21.811,11.444 21.806,11.518 21.801,11.588 21.79,11.75 21.785,11.883 21.785,11.972 21.785,12.787 21.866,13.539 22.045,14.196 22.088,14.366 22.131,14.512 22.19,14.694 22.215,14.771 22.215,14.771 22.247,14.865 22.551,15.855 22.7,16.84 22.7,17.887L22.696,18.739C22.615,19.464 22.308,20.209 21.871,20.821 21.12,21.907 19.876,22.581 18.408,22.7L16.559,22.7C15.362,22.668 14.199,22.133 13.336,21.27 13.173,21.107 13.066,20.959 12.871,20.659 12.19,19.843 11.696,18.862 11.38,17.7H8zM12.333,16.5 L12.418,16.895C12.682,18.119 13.137,19.105 13.824,19.934 14.015,20.22 14.1,20.336 14.185,20.421 14.837,21.074 15.712,21.477 16.577,21.5L18.367,21.502C19.431,21.414 20.345,20.918 20.889,20.132 21.218,19.671 21.446,19.117 21.5,18.662V17.887C21.5,16.96 21.369,16.094 21.103,15.229 21.077,15.149 21.077,15.149 21.049,15.066 20.982,14.859 20.931,14.687 20.884,14.498 20.677,13.741 20.585,12.886 20.585,11.972 20.585,11.851 20.591,11.694 20.604,11.508 20.609,11.433 20.615,11.353 20.621,11.272 20.635,11.103 20.648,10.957 20.66,10.845 20.688,10.648 20.564,10.5 20.38,10.5 20.225,10.5 19.937,10.673 19.748,10.917 19.432,11.232 19.261,11.662 19.261,12.113V13.873L19.257,14.147C19.156,14.955 18.459,15.5 17.634,15.5H8C7.724,15.5 7.5,15.724 7.5,16 7.5,16.276 7.724,16.5 8,16.5H12.333zM16,6.3C16.939,6.3 17.7,7.061 17.7,8 17.7,8.939 16.939,9.7 16,9.7H6.366C6.118,9.7 5.956,9.827 5.939,9.915V11.887C5.939,12.651 5.645,13.387 5.166,13.857 4.813,14.327 4.191,14.7 3.62,14.7 2.698,14.7 2.022,13.897 2.149,13.015 2.157,12.931 2.17,12.792 2.183,12.633 2.189,12.556 2.194,12.482 2.199,12.412 2.21,12.25 2.215,12.117 2.215,12.028 2.215,11.213 2.134,10.461 1.955,9.804 1.901,9.591 1.859,9.452 1.753,9.135 1.449,8.145 1.3,7.16 1.3,6.113L1.304,5.261C1.385,4.536 1.692,3.791 2.129,3.179 2.88,2.093 4.124,1.419 5.592,1.3L7.441,1.3C8.638,1.332 9.801,1.867 10.664,2.73 10.827,2.893 10.934,3.041 11.129,3.341 11.81,4.157 12.304,5.138 12.62,6.3H16zM11.667,7.5 L11.582,7.105C11.318,5.881 10.863,4.895 10.176,4.066 9.985,3.78 9.9,3.664 9.815,3.579 9.163,2.926 8.288,2.523 7.423,2.5L5.633,2.498C4.569,2.586 3.655,3.082 3.111,3.868 2.782,4.329 2.554,4.883 2.5,5.338V6.113C2.5,7.04 2.631,7.906 2.897,8.771 3.006,9.1 3.056,9.262 3.116,9.502 3.323,10.259 3.415,11.114 3.415,12.028 3.415,12.149 3.409,12.306 3.396,12.492 3.391,12.567 3.385,12.647 3.379,12.728 3.365,12.897 3.352,13.043 3.34,13.155 3.312,13.352 3.436,13.5 3.62,13.5 3.775,13.5 4.063,13.327 4.252,13.083 4.568,12.768 4.739,12.338 4.739,11.887V10.127L4.743,9.853C4.844,9.045 5.541,8.5 6.366,8.5H16C16.276,8.5 16.5,8.276 16.5,8 16.5,7.724 16.276,7.5 16,7.5H11.667z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>

View File

@ -0,0 +1,54 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="72dp"
android:height="72dp"
android:viewportWidth="72"
android:viewportHeight="72">
<path
android:pathData="M28.5,65.055V45.471L46.963,63.934C43.567,65.268 39.869,66 36,66 33.41,66 30.897,65.672 28.5,65.055v0z"
android:strokeWidth="1"
android:fillColor="#07c160"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M24,63.504C18.196,60.968 13.35,56.649 10.154,51.24L24,37.393V63.504v0z"
android:strokeWidth="1"
android:fillColor="#91d300"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M8.066,46.963C6.732,43.567 6,39.869 6,36 6,33.41 6.328,30.897 6.945,28.5H26.529L8.066,46.963v0z"
android:strokeWidth="1"
android:fillColor="#ffc300"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M8.496,24C11.032,18.196 15.351,13.35 20.76,10.154L34.607,24H8.496z"
android:strokeWidth="1"
android:fillColor="#fa9d3b"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M36,6C38.59,6 41.103,6.328 43.5,6.945V26.529L25.037,8.066C28.433,6.732 32.131,6 36,6z"
android:strokeWidth="1"
android:fillColor="#fa5151"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M48,8.496C53.804,11.032 58.65,15.351 61.846,20.76L48,34.607V8.496z"
android:strokeWidth="1"
android:fillColor="#6467f0"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M63.934,25.037C65.268,28.433 66,32.131 66,36 66,38.59 65.672,41.103 65.055,43.5H45.471L63.934,25.037v0z"
android:strokeWidth="1"
android:fillColor="#1485ee"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M63.504,48C60.968,53.804 56.649,58.65 51.24,61.846L37.393,48H63.504v0z"
android:strokeWidth="1"
android:fillColor="#10aeff"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
</vector>

View File

@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M20.8,14.409L20.8,5.2L3.2,5.2v8.892L8.199,10.049C8.662,9.675 9.405,9.693 9.85,10.085L14.327,14.018 16.609,12.077C17.071,11.684 17.807,11.692 18.255,12.095L20.8,14.409zM20.8,15.994 L17.426,12.958 15.238,14.819 16.582,16L14.811,16L9.006,10.94 3.2,15.636L3.2,18.8L20.8,18.8L20.8,15.994zM2.992,4L21.008,4C21.545,4 22,4.481 22,5.075L22,18.925C22,19.521 21.556,20 21.008,20L2.992,20C2.455,20 2,19.519 2,18.925L2,5.075C2,4.479 2.444,4 2.992,4z"
android:strokeWidth="1"
android:fillColor="#1485EE"
android:fillType="nonZero"
android:strokeColor="#00000000"/>
</vector>

View File

@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="70dp"
android:height="70dp"
android:viewportWidth="1024"
android:viewportHeight="1024">
<path
android:pathData="M661.8,149.3a85.3,85.3 0,0 1,85.3 85.3v106.4L832,341a85.3,85.3 0,0 1,85.3 85.3L917.3,746.7a128,128 0,0 1,-128 128h-554.7a128,128 0,0 1,-128 -128v-469.3a128,128 0,0 1,128 -128h427.1zM661.8,213.3L234.7,213.3a64,64 0,0 0,-63.7 57.9L170.7,277.3v469.3a64,64 0,0 0,57.9 63.7L234.7,810.7h554.7a64,64 0,0 0,63.7 -57.9L853.3,746.7L853.3,426.4a21.3,21.3 0,0 0,-17.5 -21l-3.8,-0.3h-148.9L683.1,234.7a21.3,21.3 0,0 0,-17.5 -21L661.8,213.3z"
android:fillColor="#1588F4"/>
<path
android:pathData="M170.7,277.3a64,64 0,0 0,57.9 63.7L234.7,341.3H682.7v64H234.7a128,128 0,0 1,-127.8 -120.5L106.7,277.3H170.7z"
android:fillColor="#1588F4"/>
<path
android:pathData="M650.7,490.7h106.7a32,32 0,1 1,0 64h-106.7a32,32 0,1 1,0 -64z"
android:fillColor="#1588F4"/>
</vector>

View File

@ -0,0 +1,24 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="72dp"
android:height="72dp"
android:viewportWidth="72"
android:viewportHeight="72">
<path
android:pathData="M61.195,19.201 L36.597,33.402 12,19.201C12.062,19.16 12.124,19.122 12.186,19.087L34.009,6.613C35.438,5.795 37.758,5.796 39.186,6.613L61.009,19.087C61.071,19.122 61.133,19.16 61.195,19.201v0z"
android:strokeWidth="1"
android:fillColor="#10aeff"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M64.164,23.028C64.184,23.187 64.195,23.344 64.195,23.498V48.502C64.195,50.121 63.035,52.097 61.606,52.913L39.784,65.387C39.676,65.449 39.562,65.506 39.445,65.559V37.299L64.164,23.028v0z"
android:strokeWidth="1"
android:fillColor="#fa5151"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M33.411,65.387 L11.589,52.913C10.159,52.096 9,50.107 9,48.502V23.498C9,23.344 9.011,23.187 9.031,23.027L33.75,37.299V65.559C33.632,65.506 33.519,65.449 33.411,65.387z"
android:strokeWidth="1"
android:fillColor="#ffc300"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
</vector>

View File

@ -0,0 +1,24 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="72dp"
android:height="72dp"
android:viewportWidth="72"
android:viewportHeight="72">
<path
android:fillColor="#FFC300"
android:fillType="nonZero"
android:pathData="M36,62.4C50.58,62.4 62.4,50.58 62.4,36 62.4,21.42 50.58,9.6 36,9.6 21.42,9.6 9.6,21.42 9.6,36 9.6,50.58 21.42,62.4 36,62.4zM36,66C19.431,66 6,52.569 6,36 6,19.431 19.431,6 36,6 52.569,6 66,19.431 66,36c0,16.569 -13.431,30 -30,30z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
<path
android:fillColor="#FFC300"
android:fillType="nonZero"
android:pathData="M36,51.9C42.71,51.9 48.348,47.311 49.946,41.1L22.054,41.1C23.652,47.311 29.29,51.9 36,51.9zM18,37.5L54,37.5C54,47.441 45.941,55.5 36,55.5 26.059,55.5 18,47.441 18,37.5z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
<path
android:fillColor="#FFC300"
android:fillType="evenOdd"
android:pathData="M25.5,31.5C23.015,31.5 21,29.485 21,27 21,24.515 23.015,22.5 25.5,22.5 27.985,22.5 30,24.515 30,27 30,29.485 27.985,31.5 25.5,31.5zM46.5,31.5C44.015,31.5 42,29.485 42,27 42,24.515 44.015,22.5 46.5,22.5 48.985,22.5 51,24.515 51,27 51,29.485 48.985,31.5 46.5,31.5z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>

View File

@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#fa5151"
android:fillType="nonZero"
android:pathData="M19.253,7.325 L12.258,3.245C12.156,3.185 11.844,3.185 11.742,3.245L4.747,7.325 12,11.512 19.253,7.325zM19.8,8.395 L12.6,12.551V20.966L19.532,16.922C19.64,16.859 19.8,16.581 19.8,16.458V8.395zM4.2,8.395V16.458C4.2,16.579 4.361,16.86 4.468,16.922L11.4,20.966V12.551L4.2,8.395zM11.137,2.208C11.614,1.93 12.387,1.931 12.863,2.208l7.274,4.243C20.614,6.73 21,7.406 21,7.952V16.458C21,17.009 20.613,17.681 20.137,17.958L12.863,22.202C12.386,22.48 11.613,22.479 11.137,22.202L3.863,17.958C3.386,17.68 3,17.004 3,16.458V7.952C3,7.402 3.387,6.729 3.863,6.452L11.137,2.208z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>

View File

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="70dp"
android:height="70dp"
android:viewportWidth="1024"
android:viewportHeight="1024">
<path
android:pathData="M512.6,115.8c156.6,0 300.8,59.9 390.4,159.6l1.6,2 29.9,39.2 1.3,1.8c36.5,55.6 56.1,117.5 56.1,181.2 0,214.3 -217,384.7 -480.6,384.7 -53.1,0 -105.9,-7.1 -154.3,-20.6l-1.5,-0.3 -2.6,-0.5 -1.6,-0.2c-1.7,0 -4.9,1 -8.4,2.8l-95.3,52.6a44.4,44.4 0,0 1,-26.1 8.2c-25.6,0 -46.5,-19.8 -46.5,-45.7 0,-6.6 1.1,-12.4 2.9,-18.5l1.9,-7.1 17.8,-63.6C94,719.3 32,613.7 32,500.5 32,286.3 249,115.8 512.6,115.8zM241.2,870c0,1.6 -0.1,3.2 -0.3,4.3l-0.1,0.7 0.4,-1.5 -0,-3.6zM512.6,179.8C281.4,179.8 96,325.4 96,500.5c0,91.8 51.8,179.2 140.7,240.1 15.9,10.9 26.4,29.5 26.4,49 0,7 -1.2,12 -3.6,18.6l-10.1,36.1 63,-34.8c12.4,-6.7 25.5,-10.6 39,-10.6 6.8,0 14.2,1.2 22,3.2 43.5,12.1 90.5,18.4 137.9,18.4 231.2,0 416.6,-145.6 416.6,-320.7 0,-50.5 -15.6,-100 -45,-145.2l-8.1,-10.7 -504.7,289.2 -3.3,2.2a30.2,30.2 0,0 1,-14.3 3.3,31.2 31.2,0 0,1 -27.6,-16.4l-2.2,-4.3 -87,-187.9c-1.1,-2.2 -1.1,-4.3 -1.1,-6.5 0,-8.7 6.6,-15.3 15.4,-15.3 3.3,0 6.6,1.1 9.9,3.3l102.4,72.1c7.7,4.3 16.5,7.6 26.4,7.6 5.5,0 11,-1.1 16.5,-3.3l430.2,-189.8c-78,-73.7 -195.3,-118.1 -323,-118.1z"
android:fillColor="#07C160"/>
</vector>

View File

@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="72dp"
android:height="72dp"
android:viewportWidth="72"
android:viewportHeight="72">
<path
android:pathData="M37.689,9.6H34.311L32.377,17.334 30.436,17.931C29.302,18.28 28.207,18.735 27.161,19.289L25.366,20.241 18.527,16.138 16.138,18.527 20.241,25.366 19.289,27.161C18.735,28.207 18.28,29.302 17.931,30.436L17.334,32.377 9.6,34.311v3.378L17.334,39.623 17.931,41.564C18.28,42.698 18.735,43.793 19.289,44.839L20.241,46.634 16.138,53.473 18.527,55.862 25.366,51.759 27.161,52.711C28.207,53.265 29.302,53.72 30.436,54.069L32.377,54.666 34.311,62.4h3.378L39.623,54.666 41.564,54.069C42.698,53.72 43.793,53.265 44.839,52.711L46.634,51.759 53.473,55.862 55.862,53.473 51.759,46.634 52.711,44.839C53.265,43.793 53.72,42.698 54.069,41.564L54.666,39.623 62.4,37.689V34.311L54.666,32.377 54.069,30.436C53.72,29.302 53.265,28.207 52.711,27.161L51.759,25.366 55.862,18.527 53.473,16.138 46.634,20.241 44.839,19.289C43.793,18.735 42.698,18.28 41.564,17.931L39.623,17.334 37.689,9.6zM46.525,16.108 L52.023,12.81C53.203,12.102 54.714,12.288 55.688,13.261L58.739,16.313C59.712,17.286 59.898,18.797 59.19,19.977L55.892,25.475C56.547,26.712 57.091,28.017 57.51,29.377L63.728,30.932C65.063,31.266 66,32.466 66,33.842V38.158C66,39.534 65.063,40.734 63.728,41.068L57.51,42.623C57.091,43.983 56.547,45.288 55.892,46.525L59.19,52.023C59.898,53.203 59.712,54.714 58.739,55.688L55.688,58.739C54.714,59.712 53.203,59.898 52.023,59.19L46.525,55.892C45.288,56.547 43.983,57.091 42.623,57.51L41.068,63.728C40.734,65.063 39.534,66 38.158,66H33.842C32.466,66 31.266,65.063 30.932,63.728L29.377,57.51C28.017,57.091 26.712,56.547 25.475,55.892L19.977,59.19C18.797,59.898 17.286,59.712 16.313,58.739L13.261,55.688C12.288,54.714 12.102,53.203 12.81,52.023L16.108,46.525C15.453,45.288 14.909,43.983 14.49,42.623L8.272,41.068C6.937,40.734 6,39.534 6,38.158V33.842C6,32.466 6.937,31.266 8.272,30.932L14.49,29.377C14.909,28.017 15.453,26.712 16.108,25.475L12.81,19.977C12.102,18.797 12.288,17.286 13.261,16.313L16.313,13.261C17.286,12.288 18.797,12.102 19.977,12.81L25.475,16.108C26.712,15.453 28.017,14.909 29.377,14.49L30.932,8.272C31.266,6.937 32.466,6 33.842,6H38.158C39.534,6 40.734,6.937 41.068,8.272L42.623,14.49C43.983,14.909 45.288,15.453 46.525,16.108zM36,44.4C40.639,44.4 44.4,40.639 44.4,36 44.4,31.361 40.639,27.6 36,27.6 31.361,27.6 27.6,31.361 27.6,36 27.6,40.639 31.361,44.4 36,44.4zM36,48C29.373,48 24,42.627 24,36 24,29.373 29.373,24 36,24 42.627,24 48,29.373 48,36 48,42.627 42.627,48 36,48z"
android:strokeWidth="1"
android:fillColor="#1485EE"
android:fillType="nonZero"
android:strokeColor="#00000000"/>
</vector>

View File

@ -5,11 +5,11 @@
android:viewportHeight="1024">
<path
android:pathData="M661.8,149.3a85.3,85.3 0,0 1,85.3 85.3v106.4L832,341a85.3,85.3 0,0 1,85.3 85.3L917.3,746.7a128,128 0,0 1,-128 128h-554.7a128,128 0,0 1,-128 -128v-469.3a128,128 0,0 1,128 -128h427.1zM661.8,213.3L234.7,213.3a64,64 0,0 0,-63.7 57.9L170.7,277.3v469.3a64,64 0,0 0,57.9 63.7L234.7,810.7h554.7a64,64 0,0 0,63.7 -57.9L853.3,746.7L853.3,426.4a21.3,21.3 0,0 0,-17.5 -21l-3.8,-0.3h-148.9L683.1,234.7a21.3,21.3 0,0 0,-17.5 -21L661.8,213.3z"
android:fillColor="#000000"/>
android:fillColor="#1588F4"/>
<path
android:pathData="M170.7,277.3a64,64 0,0 0,57.9 63.7L234.7,341.3H682.7v64H234.7a128,128 0,0 1,-127.8 -120.5L106.7,277.3H170.7z"
android:fillColor="#000000"/>
android:fillColor="#1588F4"/>
<path
android:pathData="M650.7,490.7h106.7a32,32 0,1 1,0 64h-106.7a32,32 0,1 1,0 -64z"
android:fillColor="#000000"/>
android:fillColor="#1588F4"/>
</vector>

View File

@ -3,115 +3,163 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:fitsSystemWindows="true"
android:background="@color/white"
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
<FrameLayout
android:id="@+id/fl_main"
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="0dp"
android:layout_weight="1.0"
android:background="@color/white" />
<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"
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/bottomNavContainer"
android:layout_width="match_parent"
android:layout_height="55dp"
android:background="@color/white"
android:paddingBottom="4dp">
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#E6F0F0"
app:layout_constraintTop_toTopOf="parent" />
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/cl_home"
android:layout_width="0dp"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/cl_contact"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:roundPercent="1" />
app:layout_constraintWidth_percent="0.25">
<TextView
android:id="@+id/tv_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
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" />
<ImageView
android:id="@+id/iv_home"
android:layout_width="24dp"
android:layout_height="24dp"
android:background="@drawable/ic_main"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<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" />
<TextView
android:id="@+id/tv_home"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="主页"
android:textColor="@color/black"
android:textSize="10sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/iv_home" />
<ImageView
android:id="@+id/iv_search"
android:layout_width="36dp"
android:layout_height="36dp"
android:layout_marginEnd="5dp"
android:scaleType="centerCrop"
android:src="@drawable/ic_search"
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/cl_contact"
android:layout_width="0dp"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/iv_message"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintEnd_toStartOf="@id/cl_discovery"
app:layout_constraintStart_toEndOf="@id/cl_home"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_percent="0.25">
<ImageView
android:id="@+id/iv_message"
android:layout_width="22dp"
android:layout_height="22dp"
android:layout_marginEnd="5dp"
android:src="@drawable/home_ic_message"
<ImageView
android:id="@+id/iv_contact"
android:layout_width="24dp"
android:layout_height="24dp"
android:background="@drawable/ic_message"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_contact"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="联系人"
android:textColor="@color/black"
android:textSize="10sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/iv_contact" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/cl_discovery"
android:layout_width="0dp"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/iv_more"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintStart_toEndOf="@id/cl_contact"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_percent="0.25">
<ImageView
android:id="@+id/iv_more"
android:layout_width="36dp"
android:layout_height="36dp"
android:layout_marginEnd="20dp"
android:src="@drawable/home_more_indicator"
<ImageView
android:id="@+id/iv_discovery"
android:layout_width="24dp"
android:layout_height="24dp"
android:background="@drawable/ic_discovery"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_discovery"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="发现"
android:textColor="@color/black"
android:textSize="10sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/iv_discovery" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/cl_mine"
android:layout_width="0dp"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintStart_toEndOf="@id/cl_discovery"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_percent="0.25">
<ImageView
android:id="@+id/iv_mine"
android:layout_width="24dp"
android:layout_height="24dp"
android:background="@drawable/ic_mine"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_mine"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="我的"
android:textColor="@color/black"
android:textSize="10sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/iv_mine" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
<FrameLayout
android:id="@+id/frameLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/iv_more">
<GridView
android:id="@+id/gridView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="5dp"
android:gravity="center"
android:horizontalSpacing="13dp"
android:numColumns="4"
android:overScrollMode="never"
android:padding="10dp"
android:scrollbars="none"
android:verticalSpacing="10dp"
android:visibility="invisible" />
<LinearLayout
android:id="@+id/linearlayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycle_chat_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F1F1F1"
android:overScrollMode="never" />
</LinearLayout>
</FrameLayout>
</LinearLayout>

View File

@ -12,159 +12,15 @@
android:layout_height="wrap_content"
android:padding="10dp">
<ImageView
android:id="@+id/iv_back"
android:layout_width="22dp"
android:layout_height="22dp"
android:src="@drawable/ic_left_arrow"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_contact_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="7dp"
android:text="friend"
android:textColor="@color/black"
android:textSize="16sp"
app:layout_constraintBottom_toTopOf="@id/tv_contact_status"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@id/iv_back" />
<TextView
android:id="@+id/tv_contact_status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="在线"
android:textColor="@color/black"
android:textSize="8sp"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="@id/iv_back"
app:layout_constraintStart_toStartOf="@id/tv_contact_name"
app:layout_constraintTop_toBottomOf="@id/tv_contact_name" />
<ImageView
android:id="@+id/iv_more"
android:layout_width="22dp"
android:layout_height="22dp"
android:layout_marginEnd="5dp"
android:src="@drawable/ic_more"
app:layout_constraintBottom_toBottomOf="@id/iv_back"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@id/iv_back" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycle_chat_list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#F1F1F1"
android:overScrollMode="never" />
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#F7F7F7"
android:paddingVertical="4dp">
<EditText
android:id="@+id/et_input"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:layout_marginEnd="10dp"
android:background="@drawable/chat_message_et_bac"
android:gravity="center_vertical"
android:maxHeight="100dp"
android:minHeight="36dp"
android:paddingHorizontal="15dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/iv_emoji"
app:layout_constraintStart_toStartOf="parent" />
<ImageView
android:id="@+id/iv_emoji"
android:layout_width="28dp"
android:layout_height="28dp"
android:layout_marginVertical="4dp"
android:layout_marginEnd="10dp"
android:src="@drawable/chat_icon_emoji"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/ll_send"
app:layout_constraintStart_toEndOf="@id/et_input" />
<LinearLayout
android:id="@+id/ll_send"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/iv_emoji"
tools:ignore="UseCompoundDrawables">
<ImageView
android:id="@+id/iv_function_panel"
android:layout_width="28dp"
android:layout_height="28dp"
android:layout_gravity="center_vertical"
android:layout_marginVertical="4dp"
android:layout_marginEnd="10dp"
android:src="@drawable/chat_icon_add" />
<TextView
android:id="@+id/tv_send"
android:layout_width="wrap_content"
android:layout_height="28dp"
android:layout_gravity="center_vertical"
android:layout_marginVertical="4dp"
android:layout_marginEnd="8dp"
android:background="@drawable/chat_send_btn_bac_mine"
android:gravity="center"
android:paddingHorizontal="10dp"
android:paddingVertical="6dp"
android:text="发送"
android:textColor="@color/white"
android:visibility="gone" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/cl_function_panel"
android:layout_width="match_parent"
android:layout_height="250dp"
android:minHeight="250dp"
android:visibility="gone">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_emoji"
android:layout_width="0dp"
android:layout_height="0dp"
android:overScrollMode="never"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:ellipsize="end"
android:maxLines="1"
android:singleLine="true"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<GridView
android:id="@+id/gv_function_panel"
android:layout_width="0dp"
android:layout_height="250dp"
android:numColumns="4"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintTop_toTopOf="parent"
tools:text="这是一个测试文案 这是一个测试文案 这是一个测试文案 这是一个测试文案" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingVertical="10dp">
<TextView
android:id="@+id/tv_tip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/black"
android:textSize="16sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gray"
android:orientation="vertical"
tools:context=".ui.fragment.ContactFragment">
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_gravity="center"
android:gravity="center_vertical|center_horizontal"
android:text="通讯录"
android:textColor="@color/black"
android:textSize="16sp" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycle_friend_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:overScrollMode="never" />
</LinearLayout>

View File

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gray"
android:orientation="vertical"
tools:context=".ui.fragment.DiscoveryFragment">
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_gravity="center"
android:gravity="center_vertical|center_horizontal"
android:text="发现"
android:textColor="@color/black"
android:textSize="16sp" />
<com.kaixed.kchat.ui.widget.CustomItem
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:itemLeftIcon="@drawable/ic_friend_circle"
app:itemName="朋友圈" />
<com.kaixed.kchat.ui.widget.CustomItem
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:itemLeftIcon="@drawable/ic_discovery_scan"
app:itemName="扫一扫" />
<com.kaixed.kchat.ui.widget.CustomItem
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:isTopDividerVisible="true"
app:itemLeftIcon="@drawable/ic_discovery_music"
app:itemName="听一听" />
</LinearLayout>

View File

@ -0,0 +1,117 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:orientation="vertical">
<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" />
<TextView
android:id="@+id/tv_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
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" />
<ImageView
android:id="@+id/iv_search"
android:layout_width="36dp"
android:layout_height="36dp"
android:layout_marginEnd="5dp"
android:scaleType="centerCrop"
android:src="@drawable/ic_search"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/iv_message"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/iv_message"
android:layout_width="22dp"
android:layout_height="22dp"
android:layout_marginEnd="5dp"
android:src="@drawable/home_ic_message"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/iv_more"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/iv_more"
android:layout_width="36dp"
android:layout_height="36dp"
android:layout_marginEnd="20dp"
android:src="@drawable/home_more_indicator"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<FrameLayout
android:id="@+id/frameLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/iv_more">
<GridView
android:id="@+id/gridView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="5dp"
android:gravity="center"
android:horizontalSpacing="13dp"
android:numColumns="4"
android:overScrollMode="never"
android:padding="10dp"
android:scrollbars="none"
android:verticalSpacing="10dp"
android:visibility="invisible" />
<LinearLayout
android:id="@+id/linearlayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycle_chat_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F1F1F1"
android:overScrollMode="never" />
</LinearLayout>
</FrameLayout>
</LinearLayout>

View File

@ -0,0 +1,134 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/cl_profile"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="15dp"
app:layout_constraintTop_toTopOf="parent">
<androidx.constraintlayout.utils.widget.ImageFilterView
android:id="@+id/ifv_avatar"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginStart="20dp"
android:layout_marginTop="55dp"
android:src="@drawable/ic_avatar"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:roundPercent="0.3" />
<TextView
android:id="@+id/tv_nickname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:text="糕菜菜"
android:textColor="@color/black"
android:textSize="15sp"
app:layout_constraintStart_toEndOf="@id/ifv_avatar"
app:layout_constraintTop_toTopOf="@id/ifv_avatar" />
<TextView
android:id="@+id/tv_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="kid: kaixed"
android:textSize="12sp"
app:layout_constraintBottom_toBottomOf="@id/ifv_avatar"
app:layout_constraintStart_toStartOf="@id/tv_nickname"
app:layout_constraintTop_toBottomOf="@id/tv_nickname" />
<ImageView
android:id="@+id/cl_profile_right_arrow"
android:layout_width="16dp"
android:layout_height="16dp"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:layout_marginEnd="15dp"
android:src="@drawable/icon_arrow_right"
app:layout_constraintBottom_toBottomOf="@id/ifv_avatar"
app:layout_constraintEnd_toEndOf="parent" />
<ImageView
android:layout_width="16dp"
android:layout_height="16dp"
android:layout_marginEnd="15dp"
android:src="@drawable/icon_qrcode"
app:layout_constraintBottom_toBottomOf="@id/cl_profile_right_arrow"
app:layout_constraintEnd_toStartOf="@id/cl_profile_right_arrow"
app:layout_constraintTop_toTopOf="@id/cl_profile_right_arrow" />
</androidx.constraintlayout.widget.ConstraintLayout>
<LinearLayout
android:id="@+id/ll_setting_items"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="@color/gray"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/cl_profile">
<com.kaixed.kchat.ui.widget.CustomItem
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:itemLeftIcon="@drawable/ic_mine_pay"
app:itemName="服务" />
<com.kaixed.kchat.ui.widget.CustomItem
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:itemLeftIcon="@drawable/ic_mine_favorites"
app:itemName="收藏" />
<com.kaixed.kchat.ui.widget.CustomItem
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:isTopDividerVisible="true"
app:itemLeftIcon="@drawable/ic_mine_album"
app:itemName="朋友圈" />
<com.kaixed.kchat.ui.widget.CustomItem
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:isTopDividerVisible="true"
app:itemLeftIcon="@drawable/ic_mine_card"
app:itemName="卡包" />
<com.kaixed.kchat.ui.widget.CustomItem
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:isTopDividerVisible="true"
app:itemLeftIcon="@drawable/ic_mine_emoji"
app:itemName="表情" />
<com.kaixed.kchat.ui.widget.CustomItem
android:id="@+id/ci_setting"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:isTopDividerVisible="false"
app:itemLeftIcon="@drawable/ic_mine_setting"
app:itemName="设置" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -4,18 +4,28 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:paddingHorizontal="15dp"
android:paddingVertical="10dp">
android:paddingStart="15dp">
<View
android:id="@+id/view_top"
android:layout_width="0dp"
android:layout_height="0.5dp"
android:background="@color/gray"
android:visibility="invisible"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@id/tv_nickname"
app:layout_constraintTop_toTopOf="parent" />
<androidx.constraintlayout.utils.widget.ImageFilterView
android:id="@+id/ifv_avatar"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_width="35dp"
android:layout_height="35dp"
android:layout_marginVertical="10dp"
android:src="@drawable/ic_avatar"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:roundPercent="0.3" />
app:roundPercent="0.2" />
<TextView
android:id="@+id/tv_nickname"
@ -24,37 +34,19 @@
android:layout_marginStart="10dp"
android:text="kaixed"
android:textColor="@color/black"
android:textSize="17sp"
app:layout_constraintBottom_toTopOf="@id/tv_signature"
android:textSize="15sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toEndOf="@+id/ifv_avatar"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_signature"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxWidth="150dp"
android:maxLines="1"
android:text="平安顺遂,喜乐无忧。"
android:textSize="12sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="@id/tv_nickname"
app:layout_constraintTop_toBottomOf="@id/tv_nickname" />
<TextView
android:id="@+id/tv_send_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="5dp"
android:background="@drawable/friend_send_bac"
android:paddingHorizontal="15dp"
android:paddingVertical="5dp"
android:text="发消息"
android:textColor="@color/black"
<View
android:id="@+id/view_bottom"
android:layout_width="0dp"
android:layout_height="0.5dp"
android:background="@color/gray"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintStart_toStartOf="@id/tv_nickname" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -9,12 +9,23 @@
<View
android:id="@+id/decoration_top"
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_height="0.5dp"
android:background="#E5E5E5"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@id/tv_item_name"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/iv_item_left_icon"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_marginVertical="10dp"
android:layout_marginStart="15dp"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_item_name"
@ -25,10 +36,22 @@
android:textColor="@color/black"
android:textSize="17sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintStart_toEndOf="@id/iv_item_left_icon"
app:layout_constraintTop_toTopOf="parent"
app:layout_goneMarginStart="15dp"
app:layout_goneMarginTop="0dp" />
<View
android:id="@+id/view_red_tip"
android:layout_width="8dp"
android:layout_height="8dp"
android:layout_marginStart="10dp"
android:background="@drawable/icon_red_dot"
android:visibility="invisible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toEndOf="@id/tv_item_name"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_item_desc"
android:layout_width="wrap_content"
@ -68,7 +91,7 @@
<View
android:id="@+id/decoration_bottom"
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_height="0.5dp"
android:background="#E5E5E5"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingVertical="10dp">
<TextView
android:id="@+id/tv_tip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="这是一个小tip"
android:textColor="@color/black"
android:textSize="12sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -18,6 +18,8 @@
<attr name="iconSize" format="dimension" />
<attr name="iconRound" format="dimension" />
<attr name="itemIcon" format="reference" />
<attr name="itemLeftIcon" format="reference" />
<attr name="itemRedTip" format="boolean" />
</declare-styleable>

View File

@ -5,5 +5,7 @@
<string name="setting">设置</string>
<string name="withdraw_message_format">%1$s 撤回了一条消息</string>
<!-- TODO: Remove or change this placeholder text -->
<string name="hello_blank_fragment">Hello blank fragment</string>
</resources>