首頁 > 軟體

Android實現表情功能

2022-04-01 13:03:03

本文範例為大家分享了Android實現表情功能的具體程式碼,供大家參考,具體內容如下

Dialog實現表情評論功能核心問題:

1、如何得到鍵盤彈起和隱藏狀態
2、在於表情和鍵盤切換時候,防止Dialog抖動

問題1:由於無法獲取鍵盤彈起狀態,但是鍵盤彈起,View尺寸變化,同時被onSizeChanged()呼叫。

View 原始碼:

/**
     * This is called during layout when the size of this view has changed. If
     * you were just added to the view hierarchy, you're called with the old
     * values of 0.
     *
     * @param w Current width of this view.
     * @param h Current height of this view.
     * @param oldw Old width of this view.
     * @param oldh Old height of this view.
     */
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
}

我們可以通過繼承View 重寫 onSizeChanged方法得到View尺寸變化來判斷鍵盤是否彈起:

int minKeyboardHeight = dm.heightPixels / 4; (螢幕高度1/4)

當 oldh - h > minKeyboardHeight時,鍵盤彈起

當 h - oldh > minKeyboardHeight時,鍵盤隱藏

如此即可獲取鍵盤的彈起、隱藏狀態 和鍵盤高度 inputHeight(同時也是表情佈局高度) 。

問題2:表情和鍵盤切換時候,防止Dialog抖動

表情和鍵盤切換時候,由於DialogViewHeight 高度變化導致的Dialog高度重新計算高度而產生抖動;那麼當表情和鍵盤切換時DialogViewHeight 中間 DialogViewHeight 高度固定不變導致介面抖動。

鍵盤——>表情:因為當鍵盤彈起時候,我們已經知道鍵盤的高度,那麼當切換表情時候:(鍵盤高度==表情高度)

①、 鎖高度 DialogViewHeight = CommentView高度 + inputHeight(鍵盤高度)。鎖高重點在於設定 DialogView固定值,同時設定 layoutParams.weight = 0F

②、然後設定表情佈局 VISIBLE 和 隱藏鍵盤

③、釋放鎖高。釋放鎖高重點在於設定 DialogViewHeight = LinearLayout.LayoutParams.MATCH_PARENT,同時設定  layoutParams.weight = 1.0F

程式碼:

//①鎖高:
LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) CommentView.getLayoutParams();
layoutParams.height = DialogView.getHeight();
layoutParams.weight = 0.0f;
llContentView.setLayoutParams(layoutParams);
 
//②表情佈局顯示
EmotionView.setVisibility(View.VISIBLE)
//隱藏鍵盤
 
//③釋放高度
LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) DialogView.getLayoutParams();
layoutParams.height = LinearLayout.LayoutParams.MATCH_PARENT;
layoutParams.weight = 1.0f;
llContentView.setLayoutParams(layoutParams);

表情——>鍵盤:表情切換鍵盤其實跟鍵盤切換表情一樣,分三步

①、 鎖高度:鎖高度 DialogViewHeight = CommentView高度 + inputHeight(鍵盤高度)。鎖高重點在於設定 DialogView固定值,同時設定 layoutParams.weight = 0F

②、然後設定表情佈局 GONE 和 彈起鍵盤

③、釋放鎖高。釋放鎖高重點在於設定 DialogViewHeight = LinearLayout.LayoutParams.MATCH_PARENT,同時設定  layoutParams.weight = 1.0F

//①鎖高:
LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) CommentView.getLayoutParams();
layoutParams.height = DialogView.getHeight();
layoutParams.weight = 0.0f;
llContentView.setLayoutParams(layoutParams);
 
//②表情佈局隱藏
EmotionView.setVisibility(View.GONE)
//顯示鍵盤
 
 
//③釋放高度
LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) DialogView.getLayoutParams();
layoutParams.height = LinearLayout.LayoutParams.MATCH_PARENT;
layoutParams.weight = 1.0f;
llContentView.setLayoutParams(layoutParams);

總結:

1、onSizeChanged方法,重點在於獲取鍵盤的高度。方便後面表情佈局高度設定。

2、表情切換主要在於對佈局進行鎖高和釋放高度,來實現表情、鍵盤切換時候,Dialog佈局高度是沒有變化。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com