我是新手,我想知道如果我的EditText是空的可以啓用或禁用botton。但是當EditText爲空時,按鈕將繼續顯示爲啓用。這是我的代碼。知道是否EditText爲空
if((getActivity().findViewById(R.id.textcodigo)).toString().matches("")){
Button aceptar= (Button) getActivity().findViewById(R.id.aceptar);
aceptar.setEnabled(false);
}
我使用的片段,它說,該方法的getText()是未定義 – user3383415
(只是出於好奇):不會'findViewById(R.id.textcodigo))的getText ().toString()。length == 0'會更快嗎? –
我不知道它是更快或不是,但這是另一種方式來檢查 – tyczj