开始指南屏幕的名称?

时间:2017-01-26 08:51:19

标签: android android-studio

当我下载一些应用程序时,我看到带有指南的开始屏幕,有3-4个屏幕,在它们之间滑动并显示应用程序的小指南。那么它如何调用以及如何实现呢?有没有例子或教程?

2 个答案:

答案 0 :(得分:0)

您可以使用 <?xml version="1.0" encoding="utf-8" ?> <resources> <style name="MainTheme" parent="MainTheme.Base"> </style> <!-- Base theme applied no matter what API --> <style name="MainTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar"> <!--If you are using revision 22.1 please use just windowNoTitle. Without android:--> <item name="windowNoTitle">true</item> <!--We will be using the toolbar so no need to show ActionBar--> <item name="windowActionBar">false</item> <!-- Set theme colors from http://www.google.com/design/spec/style/color.html#color-color-palette --> <!-- colorPrimary is used for the default action bar background --> <item name="colorPrimary">#2196F3</item> <!-- colorPrimaryDark is used for the status bar --> <!--<item name="colorPrimaryDark">#0084CA</item>--> <!-- colorAccent is used as the default value for colorControlActivated which is used to tint widgets --> <item name="colorAccent">#2196F3</item> <!-- You can also set colorControlNormal, colorControlActivated colorControlHighlight and colorSwitchThumbNormal. --> <item name="windowActionModeOverlay">true</item> <!-- default --> <item name="android:buttonStyle">@style/NoShadowButton</item> <item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item> <item name="android:windowNoTitle">true</item> <item name="android:windowFullscreen">true</item> </style> <style name="AppCompatDialogStyle" parent="Theme.AppCompat.Light.Dialog"> <item name="colorAccent">#2196F3</item> </style> <style name="NoShadowButton" parent="android:style/Widget.Button"> <item name="android:stateListAnimator">@null</item> </style> </resources> ViewPager创建此类屏幕。如果你想要一些库或开源参考AppIntro是一个很好的资源开始。只需在您的应用级build.gradle文件中添加Pager Indicator,并参考此example了解如何设置片段。

答案 1 :(得分:0)

  

OnBoarding Screens

它被称为入门屏幕,您必须单独创建每个布局并对其进行编码。当应用程序第一次启动时,屏幕应该只显示一次。如果用户第二次启动应用程序,则应直接转到主屏幕。要实现此目的,您必须使用SharedPreferences来存储指示首次启动的布尔值。

这是一个广泛的答案,你必须看Source

enter image description here