skip to Main Content

Android Studio – How can I fix this error with ButterKnife in Android Studio?

Building succeeds, but running on an emulator fails with this message in the console: Cause: superclass access check failed: class butterknife.compiler.ButterKnifeProcessor$RScanner (in unnamed module @0x65e8e2f6) cannot access class com.sun.tools.javac.tree.TreeScanner (in module jdk.compiler) because module jdk.compiler does not export com.sun.tools.javac.tree to…

VIEW QUESTION

Android Studio – NavigationView Tablelayout showing in all the fragments

I am trying to attach a TableLayout into my Navigation drawer activity. The TableLayout should not show when I click the menu items. This is my XML file: <?xml version="1.0" encoding="utf-8"?> <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/drawer_layout" android:fitsSystemWindows="true" tools:context=".Homepage"…

VIEW QUESTION
Back To Top
Search