-2

我有一个问题,我想在 onCreate 方法中禁用一个按钮,请分享在 onCreate 方法中在运行时禁用任何按钮的方法。

 @Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_requests_interface);


  Intent intent = new Intent(this, AdminPopup.class);
    startActivity(intent);


    String fName = getIntent().getStringExtra("fName");
    TextView tfName = (TextView)findViewById(R.id.fName);
    tfName.setText(fName);
    String vuEmail = getIntent().getStringExtra("VUEmail");
    TextView tEmail = (TextView)findViewById(R.id.vuEmail);
    tEmail.setText(vuEmail);

    EditText vuEmailTest = (EditText)findViewById(R.id.vuEmail);
    String email = vuEmailTest.getText().toString();
    String str = email.substring(0,2);
    if(str.equals("bc")){
        String str2 = email.substring(3,9);
        boolean digitsOnly = TextUtils.isDigitsOnly(str2);
        if (digitsOnly){
            Button accButton = (Button)findViewById(R.id.accButton);

        }
    }
    else{
        Button accButton = (Button)findViewById(R.id.accButton);

    }

}
4

4 回答 4

1

android:enabled="false"在 xml 或accButton.setEnabled(false)代码中使用
此外,最好通过这种方法检查是否为数字:

public static boolean isNumeric(String str) {
    try {
        double d = Double.parseDouble(str);
    } catch (NumberFormatException nfe) {
        return false;
    }
    return true;
}
于 2017-07-17T17:58:33.283 回答
1

做这个:

Button b = (Button) findViewById(R.id.mybutton);
b.setEnabled(false);
于 2017-07-17T18:53:11.820 回答
1

尝试这个:

    Button accButton = (Button) findViewById(R.id.accButton);
    accButton.setEnabled(false);

请注意,在您发布的代码中,您正在设置按钮findViewbyId(),它应该是findViewById()(By 需要大写)。

于 2017-07-17T17:55:14.080 回答
1

按钮按钮 =(Button) findViewById(R.id.buttonid); button.setVisibility(View.GONE);

于 2017-07-17T18:09:55.617 回答