我仍然遇到这个单选按钮的问题:(。我仍在尝试创建一个设置页面,允许用户选择他们的文本颜色,一旦他们从此设置活动和所有其他活动中选择了,就听取共享偏好也改变了。
我知道如何保存文本并从活动之间的共享首选项中获取文本但是int?因为我需要收音机检查值,这个方法将传递给其他活动来设置那些文本视图颜色。
有人可以帮我查一下代码吗?
我对android和一般编程很新。
public class Text_Colour extends Activity implements OnSharedPreferenceChangeListener {
RadioButton rb1, rb2, rb3, rb4, rb5;
TextView tv1, tv2;
RadioGroup rg1;
Button bt1;
String red, yellow, green, blue;
public static final String PREFS_NAME = "MyPrefsFile";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.colours);
loadPreferences();
tv1 = (TextView)findViewById(R.id.textview1);
tv2 = (TextView)findViewById(R.id.textview2);
bt1 = (Button) findViewById(R.id.button1);
rb1 = (RadioButton) findViewById(R.id.radioButton1);
rb2 = (RadioButton) findViewById(R.id.radioButton2);
rb3 = (RadioButton) findViewById(R.id.radioButton3);
rb4 = (RadioButton) findViewById(R.id.radioButton4);
rb5 = (RadioButton) findViewById(R.id.radioButton5);
rg1 = (RadioGroup) findViewById(R.id.radiogroup1);
bt1.setOnClickListener(Colour_change_b);
//tv1.setOnSharedPreferenceChangeListener(this);
}
View.OnClickListener Colour_change_b = new View.OnClickListener() {
public void onClick(View v) {
if(v == bt1) {
if (rb1.isChecked()== true) {
tv2.setTextColor(Color.RED);
}
if (rb2.isChecked() == true) {
tv2.setTextColor(Color.YELLOW);
}
if (rb3.isChecked() == true) {
tv2.setTextColor(Color.GREEN);
}
if (rb4.isChecked() == true) {
tv2.setTextColor(Color.BLUE);
}
if (rb5.isChecked() == true) {
rb5.getId();
tv2.setTextColor(Color.BLACK);
}
else {
}
SharedPreferences settings1 = getSharedPreferences(PREFS_NAME, 0);
SharedPreferences.Editor editor = settings1.edit();
editor.putInt("colour", rb1.getId());
editor.commit();
finish();
}
}
};
private void loadPreferences() {
// TODO Auto-generated method stub
SharedPreferences settings = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
tv1.setTextColor(settings.getId("colour", ""));
settings.registerOnSharedPreferenceChangeListener(Text_Colour.this);
}
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences,
String key) {
loadPreferences();
}
}
非常感谢您的时间。
答案 0 :(得分:3)
使用您的RadioGroup
。您可以使用setOnCheckedChangeListener(RadioGroup.OnCheckedChangeListener listener)
立即接收新颜色的值,并且可以使用getCheckedRadioButtonId()
来获取已检查的radioButtonId。
然而,有一个问题。 Id 是在编译时由android生成的。不保证编辑之间保持一致。如果要获取RadioGroup中RadioButton的索引,请使用indexOfChild(View child)
。
要获取该值,您需要getInt()
,然后是getChildAt(int index)
,然后是getId()
和check(int id)
。