2
私はカスタムキーボードで作業していますが、指数記号を追加することに固執しています。単に「^」を追加しますか?ここに私のコードは、申し訳ありません私は、noobカスタムキーボードに指数(上付き文字)記号を追加するにはどうすればよいですか?
<?xml version="1.0" encoding="utf-8"?>
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
android:keyWidth="15%p"
android:keyHeight="15%p" >
<Row>
<Key android:codes="+" android:keyLabel="a" android:horizontalGap="2%p"/>
<Key android:codes="-" android:keyLabel="b" android:horizontalGap="2%p"/>
<Key android:codes="*" android:keyLabel="c" android:horizontalGap="2%p" />
<Key android:codes="/" android:keyLabel="d" android:horizontalGap="2%p" />
<Key android:codes="^" android:keyLabel="^" android:horizontalGap="2%p" />
<Key android:codes="(" android:keyLabel="(" android:horizontalGap="2%p"/>
<Key android:codes=")" android:keyLabel=")" android:horizontalGap="2%p"/>
</Row>
<Row>
<Key android:codes="-1" android:keyLabel="@drawable/backspace" android:keyWidth="34%p" android:horizontalGap="4%p"/>
<Key android:codes="100" android:keyLabel="Enter" android:keyWidth="53%p" android:horizontalGap="4%p"/>
</Row>
</Keyboard>