2021-04-18 15:18:12.620 5902-5902/com.example.myapplication E/AndroidRuntime:
FATAL EXCEPTION: main
Process: com.example.myapplication, PID: 5902
java.lang.RuntimeException: Unable to start activity
ComponentInfo{com.example.myapplication/ com.example.myapplication.MainActivity}:
android.view.InflateException: Binary XML file
line #9 in com.example.myapplication:layout/ activity_main:
Binary XML file line #9 in com.example.myapplication:layout/activity_main:
Error inflating class android.support.v7.widget.Toolbar
Caused by: android.view.InflateException: Binary XML file line #9 in
com.example.myapplication:layout/activity_main:
Binary XML file line #9 in com.example.myapplication:layout/activity_main:
Error inflating class android.support.v7.widget.Toolbar
Caused by: android.view.InflateException:
Binary XML file line #9 in com.example.myapplication:layout/activity_main:
Error inflating class android.support.v7.widget.Toolbar
Caused by: java.lang.ClassNotFoundException: android.support.v7.widget.Toolbar
at java.lang.Class.classForName(Native Method)
If you get the above error message in Android Studio LogCat Logs and your App crashes, the reason is you are trying to use android.support.v7.widget.Toolbar class that does not exist, its better to use androidx.appcompat.widget.Toolbar instead.
Example:<androidx.appcompat.widget.Toolbar
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

Android Toolbar ClassNotFound Exception
Have Questions? Post them here!
More Posts related to Android,
- Increase Android Emulator Timeout time
- Android : Remove ListView Separator/divider programmatically or using xml property
- Error : Invalid key hash.The key hash does not match any stored key hashes
- How to Change Android Toast Position?
- Android Alert Dialog with Checkboxes example
- Android : No Launcher activity found! Error
- Android Development: Spinners with Example
- Failed to sync Gradle project Error:failed to find target android-23
- INSTALL_FAILED_INSUFFICIENT_STORAGE Android Error
- Disable Fading Edges Scroll Effect Android Views
- How to create Toast messages in Android?
- Channel 50 SMSes received every few minutes Android Phones
- Android xml error Attribute is missing the Android namespace prefix [Solution]
- Create Custom Android AlertDialog
- How To Disable Landscape Mode in Android Application
- Android Development - How to switch between two Activities
- incorrect line ending: found carriage return (\r) without corresponding newline (\n)
- Generate Facebook Android SDK keyhash using java code
- Android Error Generating Final Archive - Debug Certificate Expired
- 21 Useful Android Emulator Short-cut Keyboard Keys
- Android RatingBar Example
- 11 Weeks of Android Online Sessions-15-Jun-to-28-Aug-2020
- Download interrupted: Unknown Host dl-ssl.google.com Error Android SDK Manager
- fill_parent vs match_parent vs wrap_content
- Android : Connection with adb was interrupted 0 attempts have been made to reconnect
More Posts:
- Fix: Administrative Privileges Required Error Code: 0-2005 (1223) - Windows-11
- Error : Invalid key hash.The key hash does not match any stored key hashes - Android
- Disable Control Scroll Zoom-in and Zoom-out in Notepad++ - NotepadPlusPlus
- How to stop MongoDB Server running on Ubuntu - Ubuntu
- Ubuntu: How to set Environment Variable - Ubuntu
- How to submit website to dmoz directory - HowTos
- How to read int value using Scanner Class Java - Java
- [Java] Generate Getters and Setters in VS Code - Java