Android-如何判別RadioButton被勾選或取消勾選後的事件

Android-如何判別RadioButton被勾選或取消勾選後的事件

Android-如何判別RadioButton被勾選或取消勾選後的事件


 

語法:if((r1.isChecked())==true){}esle{}

 

範例:

 

 

RadioButton r1 = (RadioButton)
findViewById(R.id.RadioButton1); 

if(r1.isChecked()==true)

{

   
t1.setText(”
選修視窗程式設計“);

}

else

{

   
t1.setText(”
取消 選修視窗程式設計“);

}

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *