本文整理汇总了Java中android.widget.ToggleButton.setClickable方法的典型用法代码示例。如果您正苦于以下问题:Java ToggleButton.setClickable方法的具体用法?Java ToggleButton.setClickable怎么用?Java ToggleButton.setClickable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.widget.ToggleButton
的用法示例。
在下文中一共展示了ToggleButton.setClickable方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initCoupon
import android.widget.ToggleButton; //导入方法依赖的package包/类
private void initCoupon() {
if (this.ll_coupon_child != null) {
this.ll_coupon_child.removeAllViews();
if (this.mCoupons != null && this.mCoupons.size() > 0) {
String couponFormat = getString(R.string.h7);
for (final Coupon coupon : this.mCoupons) {
String couponInfo = String.format(couponFormat, new Object[]{coupon.amount,
coupon.title});
View view_coupon_child = LayoutInflater.from(this.ctx).inflate(R.layout.ol,
null);
if (coupon.isChecked.booleanValue()) {
this.mCoupon = coupon;
refreshPayTotal();
this.tv_use_coupon_type.setText(couponInfo);
}
ToggleButton tb_coupon = (ToggleButton) view_coupon_child.findViewById(R.id
.tb_coupon);
TextView tv_coupon_type = (TextView) view_coupon_child.findViewById(R.id
.tv_coupon_type);
tb_coupon.setChecked(coupon.isChecked.booleanValue());
tb_coupon.setClickable(false);
tv_coupon_type.setText(couponInfo);
view_coupon_child.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
OrderEditActivity.this.tb_use_coupon.setChecked(true);
for (Coupon cp : OrderEditActivity.this.mCoupons) {
if (coupon == cp) {
cp.isChecked = Boolean.valueOf(true);
} else {
cp.isChecked = Boolean.valueOf(false);
}
}
OrderEditActivity.this.initCoupon();
}
});
this.ll_coupon_child.addView(view_coupon_child);
}
}
}
}