google play上有很多应用程序在softKeyboard中有scrollView。
由于android是开源的,我在哪里可以找到具有滚动嵌入表情符号的键盘,如给定的图像。我想我想要Android 4.x.x的开源键盘
或者告诉我如何将滚动添加到自定义softKeyboard。我尝试了很多方法。
首先我尝试将ScrollView添加到
<?xml version="1.0" encoding="utf-8"?>
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<com.zeuxislo.emojikeyboard.EmojiKeyboardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/keyboard"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:keyBackground="@drawable/samplekeybackground" >
</com.zeuxislo.emojikeyboard.EmojiKeyboardView>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Wao what a keyBoard"
android:textSize="24sp" />
</LinearLayout>
</HorizontalScrollView>
还尝试将horizontalScrollView添加到qwerty.xml和xml文件夹下的其他emoji.xml
答案 0 :(得分:3)
听起来您想要在设备上安装新键盘,然后将其设为默认键盘。尝试一些像Google's keyboard,或只是寻找其他人。安装完毕后,转到设置&gt;语言与输入&gt;当前的键盘,然后只需选择您喜欢的键盘。
答案 1 :(得分:2)