我有一个想法,为几个TextView设置android:onClick="myClickMethod"
。
<TextView
android:id="@+id/search_suggestion_1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="myClickMethod"
android:clickable="true"/>
<TextView
android:id="@+id/search_suggestion_2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="myClickMethod"
android:clickable="true"/>
<TextView
android:id="@+id/search_suggestion_3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="myClickMethod"
android:clickable="true"/>
我与调用哪个 TextView myClickMethod() 有何不同?
您可以使用
每个文本视图的 id 来完成。在myClickMethod中使用基于文本视图ID的Switch-Case。您还可以通过标签来区分文本视图。
您可以
为每个设置tag
。这样,例如,对于第一次使用View
android:tag="1"
等等。
在您的onClick
方法中,只需使用v.getTag()
即可区分它们。
您可以使用简单的开关案例
public void myClickMethod(View v)
{
switch(v.getId()) /
// id is an int value. use getId to get the id of the view
{
case R.id.search_suggestion_1:
// search suggestion 1
break
case R.id.search_suggestion_2 :
// search suggestion 2
break;
case R.id.search_suggestion_3:
// search suggestion 3
break;
}
}
当你在活动中创建一个函数时,如下所示:
public void onClickMethod(View view){
//Input argument is the view on which click is fired.
//Get id of that view
int id = view.getId();
switch(id){
// your logic
}
}
public void myClickMethod(View v)
{
switch(v.getId())
{
case R.id.search_suggestion_1:
//code here
break;
case R.id.search_suggestion_2:
//code here
break;
case R.id.search_suggestion_3:
//code here
break;
default: break;
}
}
您可以使用switch-case
通过比较它们的id
来决定按下哪个Textview
。
public void myClickMethod(View v) {
switch(v.getd()) {
case R.id.search_suggestion_1:
//code here
break;
case R.id.search_suggestion_2:
//code here
break;
case R.id.search_suggestion_3:
//code here
break;
}
}