RadioGroup 的 RadioButton 选择改变字体颜色和背景颜色

RadioGroup


		
		    
		
		    
	    


 

radiobutton字体颜色改变color_radiobutton.xml



      
      
      


 

radiobutton背景颜色改变radio_group_selector.xml



    
    


color.xml

#000000
	#e0301e
    #e7e7e8
	#ffffff
    #000000


 

Activity

clientRadioGroup = (RadioGroup) findViewById(R.id.client_charge_radiogroup);
		clientRadioGroup.setOnCheckedChangeListener(new OnCheckedChangeListener() {
			
			@Override
			public void onCheckedChanged(RadioGroup group, int checkedId) {
	            int radioButtonId = group.getCheckedRadioButtonId();
	            RadioButton rb = (RadioButton)findViewById(radioButtonId);
	            String radioButtonLabel = rb.getText().toString();
			}
		});


 

你可能感兴趣的:(android)