今天學drawable
用drawable來設計backgrund
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="#ff66aa"/>
<stroke
android:width="1dp"
android:color="#aaaaaa"/>
</shape>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffdd66"/>
<stroke
android:width="1dp"
android:color="#aaaaaa"/>
<corners android:radius="10dp"/>
</shape>
寫了兩個shape
來變更view上面的圖形