Ben programlı şöyle bir RadioGroup için RadioButtons kümesi eklemek çalışıyorum:Programatik olarak android nasıl ayarlayabilirim: button = "@ null"?
for (int i = 0; i < RANGE; i++) {
RadioButton button = new RadioButton(this);
button.setId(i);
button.setText(Integer.toString(i));
button.setChecked(i == currentHours); // Select button with same index as currently selected number of hours
button.setButtonDrawable(Color.TRANSPARENT);
button.setBackgroundResource(R.drawable.selector);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
((RadioGroup)view.getParent()).check(view.getId());
currentHours = view.getId();
}
});
radioGroupChild.addView(button);
}
ve ben (benim arka plan üstüne sadece metin istiyorum) null düğmeye çekilebilir ayarlamanız gerekir. Bunu XML'de android:button="@null"
ile el ile yapmak harika çalışıyor, ancak her radyo düğmesini sabitlemek istemiyorum. Sadece button.setButtonDrawable(null)
yapmayı denedim ama hiçbir şey değişmiyor.
Herhangi bir yardım büyük beğeni topluyor!
oldu http://stackoverflow.com/a/8910925/317889 – HGPB