I am getting following exception when I am trying to add onClick event on the item of Custom ActionBar.My app crashes when I click on searchiconactionbar
in ActionBar.I have put method onClick() in activity only.Why am I getting this error?Is there any other way for setting the onClickListener for Custom ActionBar items?
java.lang.IllegalStateException: Could not find a method clickEvent(View) in the activity class android.view.ContextThemeWrapper for onClick handler on view class android.widget.ImageView with id 'searchiconactionbar'
at android.view.View$1.onClick(View.java:3838)
at android.view.View.performClick(View.java:4466)
at android.view.View$PerformClick.run(View.java:18542)
at android.os.Handler.handleCallback(Handler.java:733)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5086)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NoSuchMethodException: clickEvent [class android.view.View]
at java.lang.Class.getConstructorOrMethod(Class.java:472)
at java.lang.Class.getMethod(Class.java:857)
at android.view.View$1.onClick(View.java:3831)
at android.view.View.performClick(View.java
actionbar_gip
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@color/tabbackground"
xmlns:android="http://schemas.android.com/apk/res/android">
<EditText
android:id="@+id/actionsearchtext"
android:layout_width="230dp"
android:layout_height="wrap_content"
android:textSize="15dp"
android:textColor="#000000"
android:visibility="gone"
android:maxLines="1"
android:singleLine="true"
android:padding="7dp"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:hint="Search for all GIFs"
android:textColorHint="#544E4B"
android:layout_toLeftOf="@+id/usericonlayout"
android:background="@color/border_gray"
/>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:id="@+id/usericonlayout"
>
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:id="@+id/searchiconactionbar"
android:paddingLeft="4dp"
android:paddingRight="4dp"
android:layout_centerInParent="true"
android:onClick="clickEvent"
android:layout_marginLeft="5dp"
android:src="@drawable/search"
/>
</RelativeLayout>
</RelativeLayout>
Code-
LayoutInflater mInflater2 = LayoutInflater.from(this);
View mCustomView2 = mInflater.inflate(R.layout.actionbar_gip, null);
searchtext=(EditText)mCustomView2.findViewById(R.id.actionsearchtext);
searchIcon=(ImageView)mCustomView2.findViewById(R.id.searchiconactionbar);
getSupportActionBar().setCustomView(R.layout.actionbar_gip);
public void clickEvent(View v) {
if (v.getId() == R.id.searchiconactionbar) {
if (searchtext.getVisibility() == View.GONE)
expand(searchtext);
else
collapse(searchtext);
}
}