本文整理匯總了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);
}
}
}
}