From 89601df78442c59b824090053a184a773651761d Mon Sep 17 00:00:00 2001 From: kaixed Date: Sun, 18 Aug 2024 16:26:30 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E8=81=8A=E5=A4=A9=E6=A8=A1=E5=9D=97):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=81=8A=E5=A4=A9=E6=89=A9=E5=B1=95=E8=8F=9C?= =?UTF-8?q?=E5=8D=95=E4=BB=A5=E5=8F=8A=E8=A1=A8=E6=83=85=E9=94=AE=E7=9B=98?= =?UTF-8?q?=E7=9A=84=E5=88=87=E6=8D=A2=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复聊天扩展菜单以及表情键盘的切换逻辑 --- .idea/GitCommitMessageStorage.xml | 20 ++ .idea/git_toolbox_prj.xml | 15 + .idea/vcs.xml | 6 + app/src/main/AndroidManifest.xml | 5 +- .../kchat/network/NetworkInterface.java | 2 +- .../com/kaixed/kchat/utils/ConstantsUtil.java | 17 + .../kchat/view/activity/ChatActivity.java | 294 ++++++++++++------ .../kchat/view/activity/LoginActivity.java | 5 +- .../kchat/view/activity/MainActivity.java | 9 +- .../kchat/view/activity/TestActivity.kt | 141 +++++++++ app/src/main/res/layout/activity_chat.xml | 5 +- app/src/main/res/layout/activity_test.xml | 172 ++++++++++ .../main/res/xml/network_security_config.xml | 2 +- 13 files changed, 590 insertions(+), 103 deletions(-) create mode 100644 .idea/GitCommitMessageStorage.xml create mode 100644 .idea/git_toolbox_prj.xml create mode 100644 .idea/vcs.xml create mode 100644 app/src/main/java/com/kaixed/kchat/utils/ConstantsUtil.java create mode 100644 app/src/main/java/com/kaixed/kchat/view/activity/TestActivity.kt create mode 100644 app/src/main/res/layout/activity_test.xml diff --git a/.idea/GitCommitMessageStorage.xml b/.idea/GitCommitMessageStorage.xml new file mode 100644 index 0000000..3b56900 --- /dev/null +++ b/.idea/GitCommitMessageStorage.xml @@ -0,0 +1,20 @@ + + + + + + \ No newline at end of file diff --git a/.idea/git_toolbox_prj.xml b/.idea/git_toolbox_prj.xml new file mode 100644 index 0000000..02b915b --- /dev/null +++ b/.idea/git_toolbox_prj.xml @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 0c85bb2..449bde2 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -20,6 +20,9 @@ android:theme="@style/Theme.KChatAndroid" android:usesCleartextTraffic="true" tools:targetApi="31"> + @@ -53,7 +56,7 @@ + android:windowSoftInputMode="adjustResize" /> diff --git a/app/src/main/java/com/kaixed/kchat/network/NetworkInterface.java b/app/src/main/java/com/kaixed/kchat/network/NetworkInterface.java index 020f23e..711685a 100644 --- a/app/src/main/java/com/kaixed/kchat/network/NetworkInterface.java +++ b/app/src/main/java/com/kaixed/kchat/network/NetworkInterface.java @@ -13,7 +13,7 @@ import okhttp3.Callback; */ public class NetworkInterface { - public static final String URL = "192.168.0.101:8080"; + public static final String URL = "192.168.31.18:8080"; public static final String SERVER_URL = "http://" + URL; public static final String WEBSOCKET_SERVER_URL = "ws://" + URL; public static final String WEBSOCKET = "/websocket/single/"; diff --git a/app/src/main/java/com/kaixed/kchat/utils/ConstantsUtil.java b/app/src/main/java/com/kaixed/kchat/utils/ConstantsUtil.java new file mode 100644 index 0000000..f9fec89 --- /dev/null +++ b/app/src/main/java/com/kaixed/kchat/utils/ConstantsUtil.java @@ -0,0 +1,17 @@ +package com.kaixed.kchat.utils; + +import static com.kaixed.kchat.utils.Constants.MMKV_COMMON_DATA; + +import com.tencent.mmkv.MMKV; + +/** + * @Author: kaixed + * @Date: 2024/8/18 13:18 + * @Description: TODO + */ +public class ConstantsUtil { + public static int getKeyboardHeight() { + return MMKV.mmkvWithID(MMKV_COMMON_DATA) + .getInt("keyboardHeight", 200); + } +} diff --git a/app/src/main/java/com/kaixed/kchat/view/activity/ChatActivity.java b/app/src/main/java/com/kaixed/kchat/view/activity/ChatActivity.java index d212af5..12c2c29 100644 --- a/app/src/main/java/com/kaixed/kchat/view/activity/ChatActivity.java +++ b/app/src/main/java/com/kaixed/kchat/view/activity/ChatActivity.java @@ -1,12 +1,15 @@ package com.kaixed.kchat.view.activity; -import static com.kaixed.kchat.utils.Constants.MMKV_COMMON_DATA; - +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.Rect; import android.graphics.drawable.ColorDrawable; import android.os.Bundle; import android.os.IBinder; @@ -14,15 +17,21 @@ import android.text.Editable; import android.text.TextWatcher; import android.util.Log; import android.view.KeyEvent; +import android.view.MotionEvent; import android.view.View; import android.view.ViewGroup; +import android.view.ViewTreeObserver; import android.view.inputmethod.EditorInfo; import android.view.inputmethod.InputMethodManager; -import android.widget.TextView; +import android.widget.LinearLayout; +import android.widget.Toast; import androidx.activity.EdgeToEdge; +import androidx.activity.OnBackPressedCallback; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatActivity; +import androidx.core.view.ViewCompat; +import androidx.core.view.WindowInsetsCompat; import androidx.lifecycle.Observer; import androidx.recyclerview.widget.GridLayoutManager; import androidx.recyclerview.widget.LinearLayoutManager; @@ -34,12 +43,12 @@ import com.kaixed.kchat.database.entity.Messages; import com.kaixed.kchat.database.entity.Messages_; import com.kaixed.kchat.databinding.ActivityChatBinding; import com.kaixed.kchat.service.WebSocketService; +import com.kaixed.kchat.utils.ConstantsUtil; import com.kaixed.kchat.utils.ImageSpanUtil; import com.kaixed.kchat.view.adapter.ChatAdapter; import com.kaixed.kchat.view.adapter.EmojiAdapter; import com.kaixed.kchat.view.adapter.FunctionPanelAdapter; import com.kaixed.kchat.view.i.OnItemClickListener; -import com.tencent.mmkv.MMKV; import org.json.JSONException; import org.json.JSONObject; @@ -58,22 +67,39 @@ import io.objectbox.query.QueryBuilder; public class ChatActivity extends AppCompatActivity implements OnItemClickListener { private ChatAdapter chatAdapter; - private final LinkedList messagesList = new LinkedList<>(); - public static final String TAG = "ChatActivity"; - private Box messagesBox; - private String friendId; - private static final long LIMIT = 50L; - private boolean isLoading = false; - private boolean isHasHistory = false; + private WebSocketService webSocketService; + + private final LinkedList messagesList = new LinkedList<>(); + + public static final String TAG = "ChatActivity"; + + private Box messagesBox; + + private String friendId; + + private static final long LIMIT = 50L; + + private boolean isLoading = false; + + private boolean isHasHistory = false; + private boolean isBound = false; + private String username; + private long tempIndex; + private final Context mContext = this; + private List strings; + private InputMethodManager imm; + private ActivityChatBinding binding; + private int softKeyboardHeight; + private String contactId; private final ServiceConnection connection = new ServiceConnection() { @@ -91,8 +117,7 @@ public class ChatActivity extends AppCompatActivity implements OnItemClickListen } }; - private boolean isKeyboardEject = false; - + private boolean isKeyboardShown = false; @Override protected void onCreate(Bundle savedInstanceState) { @@ -110,11 +135,133 @@ public class ChatActivity extends AppCompatActivity implements OnItemClickListen handleIntent(getIntent()); bindWebSocketService(); + imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE); + setPanelChange(); + + setBackPressListener(); + + getKeyBoardVisibility(); + } - private void bindWebSocketService() { - Intent serviceIntent = new Intent(this, WebSocketService.class); - bindService(serviceIntent, connection, Context.BIND_AUTO_CREATE); + private void getKeyBoardVisibility() { + final View rootView = findViewById(android.R.id.content); + + rootView.getViewTreeObserver().addOnGlobalLayoutListener(() -> { + Rect r = new Rect(); + rootView.getWindowVisibleDisplayFrame(r); + int screenHeight = rootView.getRootView().getHeight(); + int keypadHeight = screenHeight - r.bottom; + isKeyboardShown = keypadHeight > screenHeight * 0.15; + }); + } + + private void setBackPressListener() { + getOnBackPressedDispatcher().addCallback(this, new OnBackPressedCallback(true) { + @Override + public void handleOnBackPressed() { + if (binding.clBottomPanel.isShown()) { + hidePanel(false); + } else { + setEnabled(false); + onBackPressed(); + } + } + }); + } + + @SuppressLint("ClickableViewAccessibility") + private void setPanelChange() { + binding.etInput.setOnTouchListener((v, event) -> { + if (event.getAction() == MotionEvent.ACTION_UP && binding.clBottomPanel.isShown()) { + lockContentViewHeight(); + hidePanel(true); + unlockContentViewHeight(); + } + return false; + }); + + binding.ivFunctionPanel.setOnClickListener(v -> { + if (binding.clBottomPanel.isShown()) { + if (binding.rvEmoji.isShown()) { + handlePanelSwitch(false); + } else { + hideBottomPanel(); + } + } else { + switchPanel(false); + } + }); + + binding.ivEmoji.setOnClickListener(v -> { + if (binding.clBottomPanel.isShown()) { + if (binding.gvFunctionPanel.isShown()) { + handlePanelSwitch(true); + } else { + hideBottomPanel(); + } + } else { + switchPanel(true); + } + }); + } + + private void switchPanel(boolean isSwitchToEmoji) { + if (isKeyboardShown) { + lockContentViewHeight(); + handlePanelSwitch(isSwitchToEmoji); + unlockContentViewHeight(); + } else { + handlePanelSwitch(isSwitchToEmoji); + } + } + + private void hideBottomPanel() { + lockContentViewHeight(); + hidePanel(true); + unlockContentViewHeight(); + } + + private void lockContentViewHeight() { + LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) binding.recycleChatList.getLayoutParams(); + layoutParams.height = binding.recycleChatList.getHeight(); + layoutParams.weight = 0f; + binding.recycleChatList.setLayoutParams(layoutParams); + } + + private void unlockContentViewHeight() { + binding.recycleChatList.postDelayed(() -> { + LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) binding.recycleChatList.getLayoutParams(); + layoutParams.weight = 1f; + binding.recycleChatList.setLayoutParams(layoutParams); + }, 200); + } + + + private void setSoftKeyboardVisibility(boolean isShowKeyboard) { + if (isShowKeyboard) { + binding.etInput.requestFocus(); + imm.showSoftInput(binding.etInput, 0); + } else { + imm.hideSoftInputFromWindow(binding.etInput.getWindowToken(), 0); + } + } + + private void handlePanelSwitch(boolean isEmojiPanel) { + setSoftKeyboardVisibility(false); + binding.clBottomPanel.setVisibility(View.VISIBLE); + + binding.rvEmoji.setVisibility(isEmojiPanel ? View.VISIBLE : View.INVISIBLE); + binding.gvFunctionPanel.setVisibility(isEmojiPanel ? View.INVISIBLE : View.VISIBLE); + } + + private void hidePanel(boolean showSoftKeyboard) { + if (binding.clBottomPanel.isShown()) { + binding.clBottomPanel.setVisibility(View.GONE); + if (showSoftKeyboard) { + setSoftKeyboardVisibility(true); + } + } } private void handleIntent(Intent intent) { @@ -126,39 +273,18 @@ public class ChatActivity extends AppCompatActivity implements OnItemClickListen } } - private void closeKeyboard() { - View view = this.getCurrentFocus(); - if (view != null) { - // 获取 InputMethodManager - InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); - // 隐藏软键盘 - imm.hideSoftInputFromWindow(view.getWindowToken(), 0); - } - } - private void setListener() { - binding.ivEmoji.setOnClickListener(v -> { - binding.clFunctionPanel.setVisibility(View.VISIBLE); - if (isKeyboardEject) { - closeKeyboard(); - } - binding.gvFunctionPanel.setVisibility(View.GONE); - binding.rvEmoji.setVisibility(View.VISIBLE); + binding.tvContactName.setOnLongClickListener(v -> { + Intent intent = new Intent(mContext, TestActivity.class); + startActivity(intent); + return false; }); + binding.gvFunctionPanel.setSelector(new ColorDrawable(Color.TRANSPARENT)); - binding.ivFunctionPanel.setOnClickListener(v -> { - if (isKeyboardEject) { - closeKeyboard(); - } - binding.rvEmoji.setVisibility(View.GONE); - binding.clFunctionPanel.setVisibility(View.VISIBLE); - binding.gvFunctionPanel.setVisibility(View.VISIBLE); - }); - binding.tvSend.setOnClickListener(v -> sendMessage()); binding.recycleChatList.addOnScrollListener(new RecyclerView.OnScrollListener() { @Override @@ -173,9 +299,7 @@ public class ChatActivity extends AppCompatActivity implements OnItemClickListen } } }); - binding.ivBack.setOnClickListener(v -> { - finish(); - }); + binding.ivBack.setOnClickListener(v -> finish()); binding.tvContactName.setOnClickListener(v -> { Intent intentContactsDetail = new Intent(mContext, ContactsDetailActivity.class); @@ -187,47 +311,38 @@ public class ChatActivity extends AppCompatActivity implements OnItemClickListen startActivity(intentChatDetail); }); - binding.etInput.setOnFocusChangeListener((v, hasFocus) -> { - isKeyboardEject = true; - if (hasFocus) { - binding.clFunctionPanel.setVisibility(View.INVISIBLE); - } - }); - - binding.etInput.addTextChangedListener(new TextWatcher() { - @Override - public void beforeTextChanged(CharSequence s, int start, int count, int after) { - - } - - @Override - public void onTextChanged(CharSequence s, int start, int before, int count) { - boolean isInputEmpty = binding.etInput.getText().toString().isEmpty(); - binding.ivFunctionPanel.setVisibility(!isInputEmpty ? View.GONE : View.VISIBLE); - binding.tvSend.setVisibility(isInputEmpty ? View.GONE : View.VISIBLE); - - } - - @Override - public void afterTextChanged(Editable s) { - - } - }); - - binding.etInput.setOnEditorActionListener(new TextView.OnEditorActionListener() { - @Override - public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { - if (actionId == EditorInfo.IME_ACTION_DONE || - (event != null && event.getKeyCode() == KeyEvent.KEYCODE_ENTER && event.getAction() == KeyEvent.ACTION_DOWN)) { - sendMessage(); - - return true; - } - return false; + + binding.etInput.addTextChangedListener(textWatcher); + + binding.etInput.setOnEditorActionListener((v, actionId, event) -> { + if (actionId == EditorInfo.IME_ACTION_DONE || + (event != null && event.getKeyCode() == KeyEvent.KEYCODE_ENTER && event.getAction() == KeyEvent.ACTION_DOWN)) { + sendMessage(); + return true; } + return false; }); } + private final TextWatcher textWatcher = new TextWatcher() { + @Override + public void beforeTextChanged(CharSequence s, int start, int count, int after) { + + } + + @Override + public void onTextChanged(CharSequence s, int start, int before, int count) { + boolean isInputEmpty = binding.etInput.getText().toString().isEmpty(); + binding.ivFunctionPanel.setVisibility(!isInputEmpty ? View.GONE : View.VISIBLE); + binding.tvSend.setVisibility(isInputEmpty ? View.GONE : View.VISIBLE); + } + + @Override + public void afterTextChanged(Editable s) { + + } + }; + private void setupFunctionPanel() { strings = new ArrayList<>(); strings.add("[委屈]"); @@ -275,12 +390,9 @@ public class ChatActivity extends AppCompatActivity implements OnItemClickListen } private void setPanel() { - int keyboard = MMKV.mmkvWithID(MMKV_COMMON_DATA) - .getInt("keyboardHeight", 200); - - ViewGroup.LayoutParams layoutParams = binding.clFunctionPanel.getLayoutParams(); - layoutParams.height = keyboard; - binding.clFunctionPanel.setLayoutParams(layoutParams); + ViewGroup.LayoutParams layoutParams = binding.clBottomPanel.getLayoutParams(); + layoutParams.height = softKeyboardHeight; + binding.clBottomPanel.setLayoutParams(layoutParams); } @@ -289,6 +401,7 @@ public class ChatActivity extends AppCompatActivity implements OnItemClickListen username = UserManager.getInstance().getUsername(); Intent intent = getIntent(); friendId = intent.getStringExtra("friendId"); + softKeyboardHeight = ConstantsUtil.getKeyboardHeight(); } @@ -440,6 +553,11 @@ public class ChatActivity extends AppCompatActivity implements OnItemClickListen return query.find(offset, limit); } + private void bindWebSocketService() { + Intent serviceIntent = new Intent(this, WebSocketService.class); + bindService(serviceIntent, connection, Context.BIND_AUTO_CREATE); + } + @Override protected void onDestroy() { super.onDestroy(); diff --git a/app/src/main/java/com/kaixed/kchat/view/activity/LoginActivity.java b/app/src/main/java/com/kaixed/kchat/view/activity/LoginActivity.java index 4feb167..a4de7a9 100644 --- a/app/src/main/java/com/kaixed/kchat/view/activity/LoginActivity.java +++ b/app/src/main/java/com/kaixed/kchat/view/activity/LoginActivity.java @@ -86,7 +86,10 @@ public class LoginActivity extends AppCompatActivity { }); }); + getKeyboardHeight(); + } + private void getKeyboardHeight() { final FrameLayout rootLayout = findViewById(android.R.id.content); rootLayout.getViewTreeObserver().addOnGlobalLayoutListener(() -> { @@ -106,8 +109,6 @@ public class LoginActivity extends AppCompatActivity { } } }); - - } diff --git a/app/src/main/java/com/kaixed/kchat/view/activity/MainActivity.java b/app/src/main/java/com/kaixed/kchat/view/activity/MainActivity.java index c6613b3..cc69130 100644 --- a/app/src/main/java/com/kaixed/kchat/view/activity/MainActivity.java +++ b/app/src/main/java/com/kaixed/kchat/view/activity/MainActivity.java @@ -101,11 +101,6 @@ public class MainActivity extends AppCompatActivity implements OnChatListItemCli isFlipped = !isFlipped; } - public int dpToPx(float dp) { - float density = getResources().getDisplayMetrics().density; - return Math.round(dp * density); - } - @SuppressLint("NotifyDataSetChanged") public void notifyData() { chatListAdapter.notifyDataSetChanged(); @@ -134,7 +129,6 @@ public class MainActivity extends AppCompatActivity implements OnChatListItemCli ChatLists chatList = createChatList(talkerId, content, timestamp); - int index = findChatListIndex(talkerId); if (index == -1) { chatLists.add(chatList); @@ -142,7 +136,6 @@ public class MainActivity extends AppCompatActivity implements OnChatListItemCli updateChatList(chatLists.get(index), content, timestamp); } - runOnUiThread(this::notifyData); isInDb(chatList); } @@ -242,7 +235,7 @@ public class MainActivity extends AppCompatActivity implements OnChatListItemCli }); } - ObjectAnimator createAnimator(int start, int end) { + private ObjectAnimator createAnimator(int start, int end) { ObjectAnimator animator = ObjectAnimator.ofInt(binding.linearlayout, "top", start, end); long duration = 500; animator.setDuration(duration); diff --git a/app/src/main/java/com/kaixed/kchat/view/activity/TestActivity.kt b/app/src/main/java/com/kaixed/kchat/view/activity/TestActivity.kt new file mode 100644 index 0000000..3724a56 --- /dev/null +++ b/app/src/main/java/com/kaixed/kchat/view/activity/TestActivity.kt @@ -0,0 +1,141 @@ +package com.kaixed.kchat.view.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() + } + } +} diff --git a/app/src/main/res/layout/activity_chat.xml b/app/src/main/res/layout/activity_chat.xml index 6ee6363..9685ace 100644 --- a/app/src/main/res/layout/activity_chat.xml +++ b/app/src/main/res/layout/activity_chat.xml @@ -26,7 +26,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="7dp" - android:text="friend" + android:text="contact" android:textColor="@color/black" android:textSize="16sp" app:layout_constraintBottom_toTopOf="@id/tv_contact_status" @@ -139,7 +139,7 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/xml/network_security_config.xml b/app/src/main/res/xml/network_security_config.xml index 87c43a8..bab1bd8 100644 --- a/app/src/main/res/xml/network_security_config.xml +++ b/app/src/main/res/xml/network_security_config.xml @@ -1,6 +1,6 @@ - 192.168.0.101 + 192.168.31.18