Back to project page EnklawaPlayer.
The source code is released under:
GNU General Public License
If you think the Android project EnklawaPlayer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package macbury.pod.tutorial; /* w ww . j a v a2 s .c o m*/ import com.github.amlcurran.showcaseview.ShowcaseView; import com.github.amlcurran.showcaseview.targets.ActionViewTarget; import macbury.pod.R; import macbury.pod.activities.main.MainActivity; /** * Created by macbury on 09.10.14. */ public class MainActivityTutorial { private final ShowcaseView sv; public MainActivityTutorial(MainActivity activity) { //App.current().settings.doneTutorial(); this.sv = new ShowcaseView.Builder(activity) .setStyle(R.style.AppShowcaseTheme) .setTarget(new ActionViewTarget(activity, ActionViewTarget.Type.HOME)) .setContentTitle("ShowcaseView") .setContentText("This is highlighting the Home button") .hideOnTouchOutside() .build(); } }