主要なプレビューを無効にするのは簡単です: setPreviewEnabled(false) を呼び出すだけで、これらの煩わしい小さなプレビューは表示されなくなります。しかし、ポップアップ キーボードを任意のキーに接続すると、これらのプレビューがそのポップアップ内に表示されます。
qwerty.xml:
<Key android:codes="101"
android:keyLabel="E"
android:popupKeyboard="@xml/popup"
android:keyTextSize="60sp"/>
popup.xml:
<Row>
<Key android:codes="-10000"
android:keyLabel="test"
android:keyOutputText="test"/>
</Row>
<Row>
<Key android:codes="-10001"
android:keyLabel="test2"
android:keyOutputText="test2"/>
</Row>
画像を投稿できませんが、文字 'E' を長押ししてから test または test2 ボタンを押すと、その白鍵のプレビューが表示されます。
これらのキー プレビューも無効にする方法はありますか?