안녕하십니까

안드로이드를 공부하고 있는 학생입니다

키보드를 만들고 있는데 자판을 전부 그래픽 작업을 하고  만들었는데 요넘이 작동을 하질 않아요 ㅜㅜ

검색을 해봐도 기초적인것만 나오구요 제가 적용을 못하는건지 한번마 쫌 봐주세요~

<Keyboard xmlns:android="http://schemas.android.com/apk/res/android
    android:keyHeight="49dip"
    android:horizontalGap="1.5px"
    android:verticalGap="1.5px"
    >   
    <Row>
        <key android:codes="98" android:state_pressed="true" android:keyIcon="@drawable/ao" android:keyWidth="26.6%p" />
        <key android:codes="99" android:keyLabel="Cz   S" android:keyWidth="26.6%p" />         
        <key android:codes="97" android:keyLabel="A  O" android:keyWidth="26.6%p" /> 
        <key android:codes="-5" android:keyIcon="@drawable/sym_keyboard_delete"
                android:keyWidth="20.2%p"  android:keyEdgeFlags="right"
                android:isRepeatable="true"/>
                    <key android:drawable="@drawable/ao"/>
 </Row>

----main.xml----
<Button
    android:id="@+id/button"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="10dp"
    android:background="@drawable/ao" >
    </Button>
쫌 가르처주세요~ㅜㅜ