我必须开发一个应用程序。我必须使用checkbox.here我必须选择复选框意味着默认背景颜色为黄色。但我希望使用渐变为已检查和未选中条件更改背景颜色< /strong>我可以改变这个。请帮助我。
这是我目前的代码:
<CheckBox
android:id="@+id/rempasswordcheckbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/passwordview"
android:layout_y="200dp"
android:paddingLeft="45dp"
android:text="Remember Password!"
android:textColor="#1d2328" />
答案 0 :(得分:12)
如果您有兴趣更改复选框(按钮)的背景颜色,请使用
mcheckbox.setButtonDrawable(R.drawable.someotherbackground);
其中,otherotherbackground是可绘制文件夹中的图像,您想要更改复选框的背景
尝试如下
mcheckbox.setOnCheckedChangeListener(new OnCheckedChangeListener() {
public void onCheckedChanged(CompoundButton buttonView,
boolean isChecked) {
if (isChecked) {
System.out.println("checked" + isChecked);
mcheckbox.setButtonDrawable(R.drawable.imageWhenActive);
System.out.println("app constant is set as "+isChecked);
}
else
{
mcheckbox.setButtonDrawable(R.drawable.imageWheninactive);
System.out.println("app constant is set as "+isChecked);
}
}
});
答案 1 :(得分:7)
RES /抽拉/ checkbox_background.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_checked="true">
<shape>
<gradient android:startColor="#FFFFFF" android:endColor="#000000" android:angle="-90"/>
</shape>
</item>
<item>
<shape>
<gradient android:startColor="#000000" android:endColor="#FFFFFF" android:angle="-90"/>
</shape>
</item>
</selector>
在你的布局中:
<CheckBox ...
android:button="@drawable/checkbox_background" />
如果您想使用现有的drawable:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_checked="true" android:drawable="@drawable/checked_drawable" />
<item android:drawable="@drawable/unchecked_drawable" />
</selector>
答案 2 :(得分:4)
使用代码。
checkBox.setBackgroundColor(Color.BLUE);
<强>代码强>
CheckBox cb = (CheckBox) findViewById(R.id.CheckBox01);
cb.setOnCheckedChangeListener(new OnCheckedChangeListener()
{
@Override
public void onCheckedChanged(CompoundButton buttonView,boolean isChecked)
{
// TODO Auto-generated method stub
if (buttonView.isChecked())
{
//cb.setBackgroundColor(Color.BLUE);
cb.setBackgroundColor(Color.parseColor("#FFFFFF"));
}
else
{
// Not Checked
// Set Your Default Color.
}
}
});
答案 3 :(得分:4)
试试这段代码
public class MainActivity extends Activity {
CheckBox box;
boolean flag=false;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
box=(CheckBox)findViewById(R.id.box);
box.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
if(flag){
GradientDrawable d=new GradientDrawable();
d.setColor(Color.RED);
box.setBackgroundDrawable(d);
}
else{
GradientDrawable d=new GradientDrawable();
d.setColor(Color.GREEN);
box.setBackgroundDrawable(d);
}
flag=!flag;
}
});
}
}
答案 4 :(得分:1)
在复选框xml中使用以下代码:
<CheckBox
android:id="@+id/rempasswordcheckbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/passwordview"
android:background="#0000FF"
android:layout_y="200dp"
android:paddingLeft="45dp"
android:text="Remember Password!"
android:textColor="#1d2328" />
答案 5 :(得分:1)
更改主题的colorAccent
<style name="AppTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorAccent">@color/orange</item>
...
</style>