我正在Android Studio中创建自定义键盘,一切正常,除非我不知道在键盘上方的CandidatesView或至少textView哪里做广告(一些建议的单词)
我试图搜索任何添加CandidatesView的构造,但没有找到,我用过一些书,没有关于自定义键盘的信息
<?xml version="1.0" encoding="utf-8"?>
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
android:keyWidth="10%p"
android:horizontalGap="0px"
android:verticalGap="0px"
android:keyHeight="40dp">
<Row><TextView
android:id="@+id/text_view_id"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/suggested_word" />
</Row>
<Row>
...
我希望键盘上方是带有建议单词的部分