0

我创建了自定义键盘,在其中设置了以下属性。我想在按下时更改关键图像,就像我们以同样的方式使用按钮一样。按下时如何更改键图标?

 <Row>
        <Key
            android:id="@+id/key1"
            android:codes="8"
            android:keyEdgeFlags="left"
            android:keyIcon="@drawable/k1" />
        <Key
            android:codes="9"
            android:iconPreview="@drawable/k2hover"
             android:keyIcon="@drawable/k2" />
        <Key
            android:codes="10"
            android:iconPreview="@drawable/k3hover"
            android:keyEdgeFlags="right"
             android:keyIcon="@drawable/k3" />
    </Row>
4

1 回答 1

0

尝试:

row.setOnKeyPressed(new OnKeyPressed() {
    //Add the unimplemented methods
});
于 2012-12-18T10:05:25.260 回答