Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

androidx.appcompat.widget.SearchView cannot be cast to android.widget.SearchView

When I launch my app the following error is thrown:

E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.app, PID: 5513 java.lang.ClassCastException: androidx.appcompat.widget.SearchView cannot be cast to android.widget.SearchView at com.example.app.MainActivity.onCreateOptionsMenu(MainActivity.java:169)

I am trying to use a searchview in the app bar.

like image 703
JorgeAmVF Avatar asked Oct 26 '25 21:10

JorgeAmVF


1 Answers

The solution is very similar to this one except it is related to Android X instead.

So you just need to change import android.widget.SearchView; to:

import androidx.appcompat.widget.SearchView;
like image 183
JorgeAmVF Avatar answered Oct 29 '25 12:10

JorgeAmVF



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!