Questions tagged [taptargetview]

TapTargetView is an implementation of tap targets from the Material Design guidelines for feature discovery.

11 questions
3
votes
0 answers

ShowCaseView/TapTargetView implementation in Android Compose

Is there any library in Jetpack Compose which supports ShowCaseView/TapTargetView kind of implementation. I tried searching but did not find any.
Ali_Waris
  • 1,944
  • 2
  • 28
  • 46
1
vote
1 answer

Tap Target for rectangular shapes Android

I am trying to use the Tap Target View library from GitHub in an android app. https://github.com/KeepSafe/TapTargetView I was wondering if anyone knows if we can use this library to highlight a rectangular shape or if it is primarily for targets…
LeaningAndroid
  • 445
  • 2
  • 4
  • 12
0
votes
0 answers

Tap Target Prompt don't highlight correct in the bottom of the screen

I want to use MaterialTapTargetPrompt for an in-app tutorial. When I want to highlight a Button from BottmNavView, it don't overlay the bottom side of the screen like is shown in the image from left. If I open the keyboard (pressing on the +…
0
votes
0 answers

Displaying a view above dialog fragment

I want to create a tutorial for a user in my application. I use the TapTargetView library for this, when calling it on dialogfragment, the view that is created is displayed in the background of dialogfragment (red circle) override fun…
Maciej123m
  • 31
  • 7
0
votes
0 answers

Android Showcaseview: How do I show a beautiful focused view of a spinner when the activity loads, in android?

I have a spinner element inside a table row, like this:
user21139885
0
votes
0 answers

Material Tap target prompt : Focused spinner is completely white

I am implementing Material Tap target prompt library to make a tutorial screen. I want to focus on my spinner, this is my code: new MaterialTapTargetPrompt.Builder(MainActivity.this) .setTarget(spin_01) …
user20863911
0
votes
1 answer

Unable to resolve symbol 'TapTargetView'

I am trying to implement the TapTargetView library from https://github.com/KeepSafe/TapTargetView I have included this dependency in my build.gradle (Module:app) dependencies { ... implementation…
user20377123
0
votes
0 answers

Tag Target For Navigation Icon In ToolBar Andoroid Java

I want to use Tap Target on navigation Icon( three bar) but in TapTarget.forToolbarMenuItem(); it need toolbar with menu item item. My question is how to apply TapTarget on this. The XML code:
0
votes
1 answer

How to set Tap target for Bottom navigation

I use keepsafe tap target for creating tap targets. For every view, it works fine but when I use it for bottom navigation it gives me null pointer exception error. I have read its document. In that document has been written that I should use…
0
votes
0 answers

How to set TapTargetView for PreferenceSwitch in PreferenceScreen؟

I have a problem in setting TapTargetView for PreferenceSwitch in PreferenceScreen I want to set TapTargetView for PreferenceSwitch in preferenceScreen but the TapTargetView library method is built on Views and I can't pass PreferenceSwitch to…
0
votes
1 answer

Using TapTargetView on Navigation Drawer menu item

I'm using TapTargetView to create my Showcase and it's working nice to buttons and the toolbar, but I need to target my Navigation Drawer menu and I'm not getting there. One of my aproaches was to create a local variable TextView (or anything else)…
Renan Ceratto
  • 130
  • 2
  • 12