จากภายในกิจกรรมที่เรียกใช้เลย์เอาต์และมุมมองข้อความฟังการคลิกนี้จะทำงานได้:
setContentView(R.layout.your_layout);
TextView tvGmail = (TextView) findViewById(R.id.tvGmail);
String TAG = "yourLogCatTag";
tvGmail.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View viewIn) {
try {
Log.d(TAG,"GMAIL account selected");
} catch (Exception except) {
Log.e(TAG,"Ooops GMAIL account selection problem "+except.getMessage());
}
}
});
มุมมองข้อความถูกประกาศเช่นนี้ (ตัวช่วยสร้างเริ่มต้น):
<TextView
android:id="@+id/tvGmail"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/menu_id_google"
android:textSize="30sp" />
และในไฟล์ strings.xml
<string name="menu_id_google">Google ID (Gmail)</string>