选中复选框或按下按钮时,setBackgroundColor()不在视图上工作

时间:2011-05-26 17:00:27

标签: java android colors checkbox

我试图这样做,以便每当选中一个复选框时,视图就是一种颜色,当它被取消选中时它是另一种颜色但是当我选中该框时,视图变黑,然后当我选中或取消选中时,没有其他任何事情发生框。

活性

package fsg.dev.test.checkboxtest;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.view.View.OnClickListener;
import android.widget.SeekBar;

public class checkBoxTest extends Activity implements OnClickListener {
CheckBox checkbox;
SeekBar seekbar;
View view;
Button button;

private static final String TAG = "Checkbox Test";

@Override
public void onCreate(Bundle savedInstanceState) {


    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    checkbox = (CheckBox) findViewById(R.id.checkbox);
    seekbar = (SeekBar) findViewById(R.id.seekbar);
    view = (View) findViewById(R.id.background);
    button = (Button) findViewById(R.id.button);

    button.setOnClickListener(this);
    checkbox.setOnClickListener(new OnClickListener(){
        public void onClick(View v){
            final String bool;
            if(((CheckBox) v).isChecked()){
                bool = "True";
                Log.d(TAG, bool);
                setBlue();
            } else {
                bool = "False";
                Log.d(TAG, bool);
                setDefault();
            }
        }
    });
}

@Override
public void onClick(View v){
    checkbox.toggle();
    view.setBackgroundColor(R.color.Color);
}

private void setBlue(){
    Log.d(TAG, "In setBlue()");
    view.setBackgroundColor(R.color.Color);
}

private void setDefault(){
    Log.d(TAG, "In setDefault()");
    view.setBackgroundColor(R.color.Default);
}
}

main.xml中:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<CheckBox 
    android:text="Background Color" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:checked="false"
    android:id="@+id/checkbox">
</CheckBox>
<Button
    android:text="Background Color" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:id="@+id/button">
</Button>
<SeekBar 
    android:layout_height="wrap_content" 
    android:layout_width="fill_parent"
    android:id="@+id/seekbar" 
    android:layout_margin="10dip" >
</SeekBar>
<View
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/Default"
    android:id="@+id/background">
</View>

的manifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="fsg.dev.test.checkboxtest"
  android:versionCode="1"
  android:versionName="1.0">
<uses-sdk android:minSdkVersion="10" />

<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">
    <activity android:name=".checkBoxTest"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
</manifest>

谁能弄清楚我做错了什么?

1 个答案:

答案 0 :(得分:1)

更改方法setBlue()setDefault(),其中包括: YourActivity.this.setBlue()YourActivity.this.setDefault();

注意:在view.setBackgroundColor(R.color.yourColor);将其替换为:view.setBackgroundColor(Color.BLUE) ;