我在我的应用中使用TapTargetView库。我希望视图显示在底部导航栏的前面,但是它不起作用。
这是我的代码:
TapTargetView.showFor(this, // this is an Activity
TapTarget.forView(bottomNavigationView.findViewById(R.id.Home),
"This is a target",
"We have the best targets, believeme")
.transparentTarget(false)
.tintTarget(false));
如您所见,视图显示在底部导航栏的后面。
有人可以帮我怎么做吗?