TapTargetView
TapTargetView copied to clipboard
Support NavigationVew
- [x ] I have verified the issue exists on the latest version
- [x ] I am able to reproduce it
First of all, thanks for the great library. I am using your library in my app. However, I could not find a way to create a TapTarget for a meu item in NavigationView.
<com.google.android.material.navigation.NavigationView
android:id="@+id/navigationView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/view_navigation"
app:menu="@menu/main_left_navigation_menu" />
I am using NavigationView in DrawerLayout. I tried something like below, but it did not work still:
TapTarget.forView(navigationView.findViewById(R.id.nav_contact),
getString(R.string.tutorial_main_contact))
Version used: 1.13.0
@kingfisherphuoc have you find any way to support navigationview?