本文整理汇总了Java中android.widget.RadioButton.setCompoundDrawables方法的典型用法代码示例。如果您正苦于以下问题:Java RadioButton.setCompoundDrawables方法的具体用法?Java RadioButton.setCompoundDrawables怎么用?Java RadioButton.setCompoundDrawables使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.widget.RadioButton
的用法示例。
在下文中一共展示了RadioButton.setCompoundDrawables方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initCheckGroup
import android.widget.RadioButton; //导入方法依赖的package包/类
private void initCheckGroup(final OrderTestModel.OrderItemCheckListBean model, LayoutInflater inflater) {
for (int z = 0; z < model.checkItemSuggestions.size(); z++) {
final OrderTestModel.OrderItemCheckListBean.CheckItemSuggestionsBean item = model.checkItemSuggestions.get(z);
// final RadioButton ckview = (RadioButton)inflater.inflate(R.layout.fragment_test_item_ck, null);
final RadioButton ckview = new RadioButton(activity);
ckview.setText(item.suggestionOption);
if (item.isChecked.equals("1")) {
checkId = item.checkItemSuggestionsId;
ckview.setChecked(true);
} else {
ckview.setChecked(false);
}
ckview.setTag(item.checkItemSuggestionsId);
ckview.setTextColor(this.getResources().getColor(R.color.gray_text));
ckview.setButtonDrawable(new ColorDrawable(Color.TRANSPARENT));
ckview.setTextSize(18);
ckview.setId(z);
ckview.setPadding(2, 0, 12, 0);
ckview.setGravity(Gravity.CENTER | left);
Drawable drawable = getResources().getDrawable(
R.drawable.checkbox_selector_circle_bac);
// 这一步必须要做,否则不会显示.
drawable.setBounds(0, 0, drawable.getMinimumWidth(),
drawable.getMinimumHeight());
ckview.setCompoundDrawables(drawable, null, null, null);
ckview.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
checkId = (String) ckview.getTag();
}
});
llsugestcontain.addView(ckview);
}
}