1
我已經創建了自定義鍵盤,一切正常,除了彈出字符,當我長按鍵盤上的按鍵時不顯示。 你知道修復它嗎,這樣彈出的字符將作爲一個選項出現,用戶可以選擇它們嗎?Android鍵盤彈出字符不顯示
<Keyboard ...>
<Row>
<Key android:codes="46" android:keyLabel="." android:popupCharacters=","/>
</Row>
</Keyboard>
這是我按下鍵盤上的按鍵時的樣子。彈出式字符「,」未顯示。
我的預覽佈局: preview.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="30dp"
android:layout_height="40dp"
android:gravity="center"
android:background="@drawable/round_preview"
android:textStyle="bold"
android:textSize="20sp"
android:textColor="@color/colorPrimaryDark"/>
感謝。