如何在xml按钮中设计箭头

时间:2016-02-11 06:52:55

标签: android button

我只是想要一个我想要设计的帮助,就像下面给出的图像一样,当我选择任何一个按钮时,它应该出现在带有所选按钮的背景颜色的箭头上。

http://i.stack.imgur.com/WSZAa.png

请帮帮我

1 个答案:

答案 0 :(得分:0)

像这样使用按钮选择器。或点击此链接http://www.mkyong.com/android/android-imagebutton-selector-example/

<强> button_selector.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/button_pressed_yellow"
          android:state_pressed="true" />
    <item android:drawable="@drawable/button_focused_orange"
          android:state_focused="true" />
    <item android:drawable="@drawable/button_normal_green" />
</selector>

<强> activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/imageButtonSelector"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/new_button" />

</LinearLayout>