既然你有这个
<LinearLayout
android:id="@+id/linearlayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:onClick="btnHandler" >
</LinearLayout>
您可以执行以下操作
public void btnHandler(View v)
{
switch(v.getId()) // use v.getId()
{
case R.id.linearlayout :
break; // also don't forget the break;
}
}
编辑:
如果您有按钮,那么您可以执行以下操作。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/linearlayout"
android:onClick="clickEvent"
android:orientation="vertical" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/bt1"
android:text="button"
android:onClick="clickEvent"
/>
</LinearLayout>
然后在你的活动中
public void clickEvent(View v)
{
switch(v.getId())
{
case R.id.linearlayout :
Log.i("......"," linear layout clicked");
break;
case R.id.bt1 :
Log.i("......"," button clicked");
break;
}
}