2015年9月2日 星期三

【Android】TextView onClick

.xml
                 <TextView
                      android:id="@+id/card"
                      android:layout_width="wrap_content"
                      android:layout_height="wrap_content"
                      android:clickable="true"
                      android:onClick="fireButton"
                      android:text="卡卡繳費"
                      android:textSize="24dp"
                      />

.java
public void fireButton(View v){
  switch(id){
     int id = v.getId();
   case R.id.card:   //卡卡繳款
     Log.d("522", "click 卡卡繳款");
     Intent cardIt = new Intent();  
     cardIt.putExtra("header_title", getString(R.string.pay_creditcard));
     cardIt.setClass(this,ooo.class);
     cardIt.putExtras(bundle);
     startActivity(cardIt);
     finish();
     break;
}
}

沒有留言:

張貼留言