最佳答案
你不需要图书馆.你可以做的是使用一个ViewPager,它有不同的屏幕,解释了应用程序的不同部分.
原文链接:https://www.f2er.com/android/431187.html为了确保只有在FirstRunActivity的onCreate()方法中有以下代码才能运行:
boolean firstRun = getPreferences(Context.MODE_PRIVATE).getBoolean("firstRun",true);
if (!firstRun) {
Intent mainAppIntent = new Intent(getApplicationContext(),MainActivity.class);
startActivity(mainAppIntent);
finish();
return;
}
// Set up ViewPager and first run stuff
第一次运行完成并且用户在应用程序中之后,您将SharedPreferences中的firstRun设置为false,如下所示:
getPreferences(Context.MODE_PRIVATE)
.edit()
.putBoolean("firstRun",false)
.commit();