当前位置:主页 > 移动开发 > Android代码 >

Android RadioGroup 设置某一个选中或者不可选中的方法

时间:2020-10-15 23:16:59 | 栏目:Android代码 | 点击:

如题目的要求,可以参考如下代码:

 public void generAeidLength(RadioGroup radGroup) {
 if (ClientAPI.getAeid().length() == 10) {
 System.out.println(ClientAPI.getAeid());
 type_kyc.getChildAt(1).setEnabled(false);
 } else {
 System.out.println(ClientAPI.getAeid());
 type_kyc.getChildAt(0).setEnabled(false);
 type_kyc.getChildAt(1).setEnabled(true);

 type_kyc.check(R.id.company);
 kyc_type_select = CommDataInterface.QUESTION_COMPANY;

 type_kyc.getChildAt(2).setEnabled(false);
 }
 }

您可能感兴趣的文章:

相关文章