当我在键盘上工作时,我们知道当我们单击任何按钮时,在任何 android 设备上的默认键盘上,按钮上方都会闪现较大的图像,我不知道这种效果,但我尝试过使用下面的代码。
在我的Keyboard.xml中单击的按钮:
<Button android:id="@+id/xBack"
android:background="@drawable/back_high"/>
back_high上方是我的 xml 文件。
back_high.xml文件是,
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/back_click"
android:state_pressed="true" />
<item android:drawable="@drawable/back"
android:state_focused="true" />
<item android:drawable="@drawable/back" />
</selector>
它工作成功,但图像在我点击的同一个地方闪烁,但我需要这个图像显示在上面的按钮上,就像在 android 默认键盘上发生的那样。