如何在android中制作单选按钮?

时间:2014-09-05 06:02:38

标签: android button onclick viewgroup buttongroup

我是Android编程的新手,并试图创建一个单选按钮组。

例如, 我的应用程序中有3个按钮,当单击一个按钮时,其他按钮应该不被取消和无颜色。

如何以有效的方式实现这一目标?

只是给出一个提示:(比如我应该使用什么类或方法..?

3 个答案:

答案 0 :(得分:0)

你的意思是:

Button myButton1;
Button myButton2;
Button myButton3;

myButton1 = (Button) findViewById(R.id.button1);

myButton1.setOnClickListener(new OnClickListener() {

    @Override
    public void onClick(View arg0) {

        myButton1.setBackgroundColor(Color.Green); 
        myButton2.setBackgroundColor(Color.Gray); 
        myButton3.setBackgroundColor(Color.Gray); 
    }
});

myButton2 = (Button) findViewById(R.id.button1);

myButton2.setOnClickListener(new OnClickListener() {

    @Override
    public void onClick(View arg0) {

        myButton2.setBackgroundColor(Color.Green); 
        myButton1.setBackgroundColor(Color.Gray); 
        myButton3.setBackgroundColor(Color.Gray); 
    }
});

myButton3 = (Button) findViewById(R.id.button1);

myButton3.setOnClickListener(new OnClickListener() {

    @Override
    public void onClick(View arg0) {

        myButton3.setBackgroundColor(Color.Green); 
        myButton1.setBackgroundColor(Color.Gray); 
        myButton22.setBackgroundColor(Color.Gray); 
    }
});

答案 1 :(得分:0)

请尝试这种方式,希望这有助于您解决问题。

<强> /drawable/radio_selector.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@android:color/white" android:state_checked="true" android:state_pressed="false"/>
    <item android:drawable="@android:color/black" android:state_checked="false" android:state_pressed="false"/>
    <item android:drawable="@android:color/white" android:state_checked="true" android:state_pressed="true"/>
    <item android:drawable="@android:color/black" android:state_checked="false" android:state_pressed="true"/>
</selector>

<强> /drawable/radio_text_color_selector.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:color="@android:color/black" android:state_checked="true" />
    <item android:color="@android:color/black" android:state_pressed="true"/>
    <item android:color="@android:color/white" />
</selector>

<强> /layout/customradiobutton.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@android:color/darker_gray"
    android:gravity="center">

    <RadioGroup
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <RadioButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:button="@null"
            android:background="@drawable/radio_selector"
            android:text="Radio1"
            android:textColor="@drawable/radio_text_color_selector"
            android:checked="true"
            android:padding="10dp"/>
        <RadioButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:button="@null"
            android:background="@drawable/radio_selector"
            android:text="Radio2"
            android:layout_marginLeft="5dp"
            android:textColor="@drawable/radio_text_color_selector"
            android:padding="10dp"/>
        <RadioButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:button="@null"
            android:background="@drawable/radio_selector"
            android:text="Radio3"
            android:layout_marginLeft="5dp"
            android:textColor="@drawable/radio_text_color_selector"
            android:padding="10dp"/>
        </RadioGroup>

</LinearLayout>

答案 2 :(得分:0)

我也不是经验丰富的开发者。但答案取决于你想要达到的目标。您可以使用andruboy提到的无线电组,但我个人不喜欢单选按钮的样子,所以我经常使用看起来像这样的按钮创建我自己的无线电组。

myButton1 = (ImageButton) findViewById(R.id.button1);
myBytton2 =  (ImageButton) findViewById(R.id.button2);
myBytton3 =  (ImageButton) findViewById(R.id.button3);
// this variable indicate which button was clicked as last, u can use this info for next action
int whichButtonClicked = 1;

myButton1.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {
     whichButtonClicked = 1;
     myButton1.setBackgroundColor(Color.Red);
     myButton2.setBackgroundColor(Color.Gray);
     myButton3.setBackgroundColor(Color.Gray);

}

});
myButton2.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {
     whichButtonClicked = 2;
     myButton1.setBackgroundColor(Color.Gray);
     myButton2.setBackgroundColor(Color.Red);
     myButton3.setBackgroundColor(Color.Gray);

}

});

并且第三个按钮代码看起来很相似。

我是从头开始写的,如果有些东西不起作用,请给我一个词,我稍后会测试它。

我希望这个答案可以帮助你