2012-07-21 101 views
2

我需要在Android中禁用click-event按鈕。就像一個樣本,我嘗試了以下幾點。我已將TextView命名爲(輸入文本)名稱。該條件檢查TextView是否爲空按鈕,並且可單擊應設置爲false。然而,當吐司印刷時這不會發生。有人可以告訴我原因。此外,如果文本字段不是空的,我想重置clickable event按鈕爲true。將按鈕可點擊屬性設置爲false

Java文件:

public class ButtonclickabkeActivity extends Activity { 
    TextView tv; 
    Button btn; 

    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 
     tv = (TextView) findViewById(R.id.textView1); 
     tv.setText("Name"); 
     btn = (Button) findViewById(R.id.button1); 

     if (tv.getText().toString().length() != 0) { 
      btn.setClickable(false); 
      Toast.makeText(getApplicationContext(), "" + tv.getText().toString().length(), Toast.LENGTH_LONG).show(); 
     } else { 
      btn.setClickable(true); 
     } 
     btn.setOnClickListener(new View.OnClickListener() { 
      @Override 
      public void onClick(View arg0) { 
       Toast.makeText(getApplicationContext(), "Button clicked", Toast.LENGTH_LONG).show(); 
      } 
     }); 
    } 
} 

XML文件:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 
    <TextView 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:text="@string/hello"/> 
    <TextView 
     android:text="TextView" 
     android:id="@+id/textView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content"/> 
    <Button 
     android:text="Button" 
     android:id="@+id/button1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content"/> 
</LinearLayout> 

回答

11

使用

btn.setEnable(false); 

,而不是

btn.setClickable(false); 
+0

謝謝我設置btRegsiter.setVisibility(View.VISIBLE); – 2016-06-20 05:31:31

+0

'LinearLayout'上的'setClickable(false)'不會導致子視圖無法正常工作。點擊時,onClickListener始終會觸發。即使在XML'可點擊:假'不工作。我錯過了什麼? – FARID 2017-06-03 12:11:09

0

用戶370305是正確的。 .setEnable是你在尋找什麼。或者,您可以在佈局XML文件中使用android:clickable

+0

android:clickable僅用於確定視圖是否處理觸摸事件。 – 2012-07-21 12:33:53

0

在我的情況

getActivity().runOnUiThread(new Runnable() { 
    @Override 
    public void run() { 
     view.setEnabled(false); 
    } 
}); 
相關問題