I am trying to add a Toolbar
to my android studio project. I found several explanations of how should I do it and they all explained these steps. In the first step, I should import android.support.v7.widget.Toolbar;
but it does not succeed: The v7
characters bulbing in red and the warning message is: "Cannot resolve symbol 'v7'". I tried to replace the v7
with v4
which is included in the suggestions bar after the import android.support.____
but when I do so, the android studio claims it "cannot resolve symbol 'widget'".
How can I import the Toolbar
tool successfully?
Since you are using Androidx libraries you have to:
import androidx.appcompat.widget.Toolbar
.import androidx.appcompat.app.AppCompatActivity;
<androidx.appcompat.widget.Toolbar
in your layoutIf you want to use the Material Components Library
implementation 'com.google.android.material:material:<version>'
Theme.MaterialComponents.*
themecom.google.android.material.appbar.MaterialToolbar
in your code and in your layout