Android:如何在Google Analytics应用中创建app启动教程?

时间:2016-11-05 16:08:10

标签: android

在我的应用程序中,我想在用户第一次安装应用程序时获得教程。我最近使用谷歌分析应用程序,他们这样做的方式看起来很完美。

enter image description here

我也在其他应用中看到了这样的观点。这是一些标准视图还是存在库?或者我是否必须使用视图寻呼机从头开始编写?在此先感谢!!

1 个答案:

答案 0 :(得分:2)

我认为this 3rd party library最适合这些类型的教程。这是一个屏幕截图:

enter image description here

This is another library.

Another one is here.

You can also try this.

And last one is my favourite.

您也可以使用this ViewPageIndicator

要确保仅在第一次显示本教程,您可以使用共享首选项。示例代码是:

public class MainActivity extends Activity {
public static final String MyPrefs = "MyPrefs";
...

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    SharedPreferences sp = getSharedPreferences(MyPrefs, Context.MODE_PRIVATE);
    if (!sp.getBoolean("first", false)) {
        SharedPreferences.Editor editor = sp.edit();
        editor.putBoolean("first", true);
        editor.commit();
        Intent intent = new Intent(this, SampleCirclesDefault.class); //call your ViewPager class
        startActivity(intent);
    }
}
}