如何使用"得到它" Material ShowcaseView Library中的按钮?

时间:2016-01-30 08:51:03

标签: android material showcaseview

我正在使用Material ShowcaseView https://github.com/deano2390/MaterialShowcaseView。 现在,我通过将透明度添加到PULL DOWN TO REFRESH活动来获取我的应用中的视图。但是,当我点击 Image1 中的"得到它" 时,透明度已消失,但图像(箭头)标记为红色Image2就在那里。

enter image description here enter image description here

当我点击"得到它"我需要进行下一个活动。或者我需要更换这个"得到它"文本进入按钮视图。我该怎么做?请帮帮我......

我需要像这样的输出......在透明层上方按钮。

enter image description here

4 个答案:

答案 0 :(得分:5)

Github link to TourGuide

以下是TourGuide的截图:

Screenshot of TourGuide

TourGuide on Toolbar item

答案 1 :(得分:3)

使用此库: https://github.com/deano2390/MaterialShowcaseView

下面你可以看到它的演示

enter image description here

答案 2 :(得分:2)

结帐此新库https://github.com/wooplr/Spotlight

演示Gif enter image description here

答案 3 :(得分:0)

您可以根据以下内容将<action android:name="com.google.android.c2dm.intent.RECEIVE" /> 方法设置为“关闭”按钮:

https://github.com/deano2390/MaterialShowcaseView/blob/master/sample/src/main/java/uk/co/deanwild/materialshowcaseviewsample/SequenceExample.java

你可以看到他使用:

onClickListener

然后在Listener方法上:

mButtonOne = (Button) findViewById(R.id.btn_one);
mButtonOne.setOnClickListener(this);

mButtonTwo = (Button) findViewById(R.id.btn_two);
mButtonTwo.setOnClickListener(this);

mButtonThree = (Button) findViewById(R.id.btn_three);
mButtonThree.setOnClickListener(this);

希望它有所帮助!!!