当前位置:   article > 正文

Android -- 启动引导页_android 启动页

android 启动页

 简介

        一般来说,引导页由两部分组成,一部分是背景图;另一部分是页面下 方的一排圆点,其中高亮的圆点表示当前位于第几页,除了背景图与一排圆点之外,最后一页往往有个按钮,它便是进入应用主页的入口。

运行效果

 

使用到的图片可以换自己喜欢的图片,但是程序里面的图片名称记得修改

以下是我使用的图片

布局文件

        引导页的背景图(采用ImageView)、底部的一排圆点(采用RadioGroup)、 最后一页的入口按钮(采用Button)

引导页适配器

  1. 根据页面项的XML文件构造每页的视图。

  2. 让当前页码的圆点高亮显示。

  3. 如果翻到了最后一页,就显示中间的入口按钮

使用碎片Fragment

  1. 加快启动速度。因为动态注册的碎片,一开始只会加载前两个启动页,对比原来加载所有启动页 无疑大幅减少了加载页的数量,从而提升了启动速度。
  2. 降低代码耦合。把视图操作剥离到单独的碎片代码,不与适配器代码混合在一起,方便后继的代码 维护工作。

程序代码

布局文件

activity_launch_improve.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <androidx.viewpager.widget.ViewPager
  7. android:id="@+id/vp_launch"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent" />
  10. </LinearLayout>

fragment_launch.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <!-- 这是引导图片的图像视图 -->
  6. <ImageView
  7. android:id="@+id/iv_launch"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:scaleType="fitXY" />
  11. <!-- 这里容纳引导页底部的一排圆点 -->
  12. <RadioGroup
  13. android:id="@+id/rg_indicate"
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:layout_alignParentBottom="true"
  17. android:layout_centerHorizontal="true"
  18. android:orientation="horizontal"
  19. android:paddingBottom="20dp" />
  20. <!-- 这是最后一页的入口按钮 -->
  21. <Button
  22. android:id="@+id/btn_start"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:layout_centerInParent="true"
  26. android:text="立即开始美好生活"
  27. android:textColor="#ff3300"
  28. android:textSize="22sp"
  29. android:visibility="gone" />
  30. </RelativeLayout>

工具类

  1. import android.content.Context;
  2. import android.widget.Toast;
  3. public class ToastUtil {
  4. public static void show(Context ctx, String desc) {
  5. Toast.makeText(ctx, desc, Toast.LENGTH_SHORT).show();
  6. }
  7. }

Fragment碎片程序

LaunchFragment.java
  1. import android.content.Context;
  2. import android.os.Bundle;
  3. import android.view.LayoutInflater;
  4. import android.view.View;
  5. import android.view.ViewGroup;
  6. import android.widget.Button;
  7. import android.widget.ImageView;
  8. import android.widget.RadioButton;
  9. import android.widget.RadioGroup;
  10. import androidx.fragment.app.Fragment;
  11. import com.kcs.highcontrol.R;
  12. import com.kcs.highcontrol.utils.ToastUtil;
  13. public class LaunchFragment extends Fragment {
  14. public static LaunchFragment newInstance(int count, int position, int image_id) {
  15. LaunchFragment fragment = new LaunchFragment();
  16. Bundle args = new Bundle();
  17. args.putInt("count", count);
  18. args.putInt("position", position);
  19. args.putInt("image_id", image_id);
  20. fragment.setArguments(args);
  21. return fragment;
  22. }
  23. @Override
  24. public View onCreateView(LayoutInflater inflater, ViewGroup container,
  25. Bundle savedInstanceState) {
  26. Context context = getContext();
  27. Bundle arguments = getArguments();
  28. int count = arguments.getInt("count", 0);
  29. int position = arguments.getInt("position", 0);
  30. int imageId = arguments.getInt("image_id", 0);
  31. View view = LayoutInflater.from(context).inflate(R.layout.item_launch, container, false);
  32. ImageView iv_launch = view.findViewById(R.id.iv_launch);
  33. RadioGroup rg_indicate = view.findViewById(R.id.rg_indicate);
  34. Button btn_start = view.findViewById(R.id.btn_start);
  35. iv_launch.setImageResource(imageId);
  36. // 每个页面都分配一组对应的单选按钮
  37. for (int j = 0; j < count; j++) {
  38. RadioButton radio = new RadioButton(context);
  39. radio.setLayoutParams(new ViewGroup.LayoutParams(
  40. ViewGroup.LayoutParams.WRAP_CONTENT,
  41. ViewGroup.LayoutParams.WRAP_CONTENT
  42. ));
  43. radio.setPadding(10,10,10,10);
  44. rg_indicate.addView(radio);
  45. }
  46. // 当前位置的单选按钮要高亮显示,比如第二个引导页就高亮第二个单选按钮
  47. ((RadioButton)rg_indicate.getChildAt(position)).setChecked(true);
  48. // 如果是最后一个引导页,则显示入口按钮,以便用户点击按钮进入主页
  49. if (position == count - 1){
  50. btn_start.setVisibility(View.VISIBLE);
  51. btn_start.setOnClickListener(v -> {
  52. ToastUtil.show(context, "欢迎您开启美好生活");
  53. });
  54. }
  55. return view;
  56. }
  57. }

启动程序

LaunchImproveActivity.java
  1. import android.os.Bundle;
  2. import androidx.appcompat.app.AppCompatActivity;
  3. import androidx.viewpager.widget.ViewPager;
  4. import com.kcs.highcontrol.adapter.LaunchImproveAdapter;
  5. public class LaunchImproveActivity extends AppCompatActivity {
  6. /**
  7. * 声明引导页面的图片数组
  8. */
  9. private int[] lanuchImageArray = {R.drawable.guide_bg1,
  10. R.drawable.guide_bg2, R.drawable.guide_bg3, R.drawable.guide_bg4};
  11. @Override
  12. protected void onCreate(Bundle savedInstanceState) {
  13. super.onCreate(savedInstanceState);
  14. setContentView(R.layout.activity_launch_improve);
  15. ViewPager vp_launch = findViewById(R.id.vp_launch);
  16. LaunchImproveAdapter adapter = new LaunchImproveAdapter(getSupportFragmentManager(), lanuchImageArray);
  17. vp_launch.setAdapter(adapter);
  18. }
  19. }

适配器

LaunchImproveAdapter.java
  1. import androidx.annotation.NonNull;
  2. import androidx.fragment.app.Fragment;
  3. import androidx.fragment.app.FragmentManager;
  4. import androidx.fragment.app.FragmentPagerAdapter;
  5. import com.kcs.highcontrol.fragment.LaunchFragment;
  6. public class LaunchImproveAdapter extends FragmentPagerAdapter {
  7. private final int[] mImageArray;
  8. public LaunchImproveAdapter(@NonNull FragmentManager fm, int[] imageArray) {
  9. super(fm, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT);
  10. this.mImageArray = imageArray;
  11. }
  12. @NonNull
  13. @Override
  14. public Fragment getItem(int position) {
  15. return LaunchFragment.newInstance(mImageArray.length, position, mImageArray[position]);
  16. }
  17. @Override
  18. public int getCount() {
  19. return mImageArray.length;
  20. }
  21. }

修改主题

themes.xml 中添加

  1. <!--Material Design -->
  2. <style name="AppCompatTheme" parent="Theme.AppCompat.Light.NoActionBar">
  3. <item name="colorPrimary">@color/colorPrimary</item>
  4. <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
  5. <item name="colorAccent">@color/colorAccent</item>
  6. </style>

colors.xml

  1. <color name="colorPrimary">#008577</color>
  2. <color name="colorPrimaryDark">#00574B</color>
  3. <color name="colorAccent">#D81B60</color>

启动配置

  1. <activity
  2. android:name=".LaunchImproveActivity"
  3. android:theme="@style/AppCompatTheme"
  4. android:exported="true">
  5. <intent-filter>
  6. <action android:name="android.intent.action.MAIN" />
  7. <category android:name="android.intent.category.LAUNCHER" />
  8. </intent-filter>
  9. </activity>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/144726
推荐阅读