我正在开发一个Android即时聊天应用程序。我已经成功实现了它的基本功能。现在我使用库compile 'com.rockerhieu.emojicon:library:1.3.3'
添加了一组表情符号。我在我的XML文件中使用FrameLayout来显示表情符号。
1。 activity_chat.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FCAB26"
android:orientation="vertical"
android:weightSum="1">
<ListView
android:id="@+id/list_view_messages"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight=".60"
android:background="@null"
android:divider="@null"
android:stackFromBottom="true"
android:transcriptMode="alwaysScroll"></ListView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_weight=".10"
android:orientation="horizontal"
android:weightSum="1">
<ImageView
android:id="@+id/imgSmile"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".10"
android:src="@drawable/ic_msg_panel_smiles"
android:layout_gravity="center_vertical"
android:layout_marginRight="-10sp"/>
<com.rockerhieu.emojicon.EmojiconEditText
android:id="@+id/edtMessage"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:hint="Enter Message"
android:layout_weight=".60"></com.rockerhieu.emojicon.EmojiconEditText>
<Button
android:id="@+id/btnSendMessage"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_weight=".30"
android:gravity="center"
android:onClick="onClick"
android:text="Send Message" />
</LinearLayout>
<FrameLayout
android:id="@+id/emojicons"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".30"
android:visibility="gone" />
</LinearLayout>
这里即使将可见性指定为已消失,FrameLayout也会占用一些空间。
通过上述库显示表情符号组的代码如下:
// This method will set a panel of emoticons in the fragment
private void setEmojiconFragment(boolean useSystemDefault) {
// Replacing the existing fragment having id emojicons with the fragment of emoticons library containing emoticons
getSupportFragmentManager().beginTransaction().replace(R.id.emojicons, EmojiconsFragment.newInstance(useSystemDefault)).commit();
}
3.Screenshot
正如您在屏幕截图中看到的,我有一个 ImageView ,一个 EditText 并发送消息按钮。单击 ImageView 时,将显示表情符号面板,单击EditText,将隐藏表情符号键盘并显示软键盘。以下代码处理此问题。
显示表情符号弹出窗口
public void showEmojiPopUp(boolean showEmoji) {
FrameLayout frameLayout = (FrameLayout) findViewById(R.id.emojicons);
frameLayout.setVisibility(View.VISIBLE);
}
隐藏软键盘:
public void hideKeyboard() {
InputMethodManager inputManager = (InputMethodManager) getSystemService(this.INPUT_METHOD_SERVICE);
inputManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
}
我的问题是我想要表情符号键盘和软键盘占用相等的空间。在一次只有一个应该是可见的。我想在表情符号键盘和软键盘之间进行转换。正如你在代码中看到的那样,我在 FrameLayout 中添加了表情符号键盘。我无法在这里使软键盘和表情符号键盘的大小相等。请帮我解决这个问题。
已编辑的代码: 我在代码中做了一些更改:
showEmojiPopUp()方法:这里我们调整包含表情符号面板的FrameLayout的高度,以便 softkeyboard 和表情符号键盘的高度相同。
public void showEmojiPopUp(boolean showEmoji) {
Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
deviceHeight = size.y;
Log.e("Device Height", String.valueOf(deviceHeight));
frameLayout = (FrameLayout) findViewById(R.id.emojicons);
frameLayout.getLayoutParams().height = (int) (deviceHeight / 2.5); // Setting the height of FrameLayout
frameLayout.requestLayout();
frameLayout.setVisibility(View.VISIBLE);
hideKeyboard();
}
2。 hideKryboard()方法
// Hiding the keyboard
public void hideKeyboard() {
InputMethodManager inputManager = (InputMethodManager) getSystemService(this.INPUT_METHOD_SERVICE);
inputManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
}
现在正在为我工作。
答案 0 :(得分:0)
我正在使用此处找到的代码.... link
public Spannable parse(String text) {
CharSequence fromCache = cache.get(text);
if (fromCache != null) {
return (Spannable) fromCache;
} else {
CharSequence parsed = emoji.replaceEmoji(text);
Matcher matcher = userReference.matcher(text);
Spannable s;
if (parsed instanceof Spannable) {
s = (Spannable) parsed;
} else {
s = Spannable.Factory.getInstance().newSpannable(parsed);
}
while (matcher.find()) {
s.setSpan(new ForegroundColorSpan(0xff427ab0), matcher.start(), matcher.end(), 0);
}
cache.put(text, s);
return s;
}
}