FragmentPagerAdapter被弃用后的代替方案

这篇具有很好参考价值的文章主要介绍了FragmentPagerAdapter被弃用后的代替方案。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

网上搜了很多,都没有找到有关Java的完整解决方案。到处问也没有结果。自己瞎折腾,居然出结果啦!——不是科班出生小白太难了!

首先说,我要想的效果:底部一个导航栏,点击导航栏,可以实现翻页效果。也可以通过左滑、右滑实现翻页效果。

FragmentPagerAdapter被弃用后的代替方案

第一步:在gradle里添加支持:

implementation 'androidx.viewpager2:viewpager2:1.0.0'

第二步:MainActivity的XML里

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <androidx.viewpager2.widget.ViewPager2
        android:id="@+id/ViewPager2"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />

    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/navigation"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        app:itemIconTint="@color/bg_tab"
        app:itemTextColor="@color/bg_tab"
        app:menu="@menu/navigation" />

</LinearLayout>

第三步,color写法,在res里新建一个文件夹,取名color,下面再建一个资源文件bg_tab.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:color="@color/red" android:state_checked="true" />
    <item android:color="@color/black" android:state_checked="false" />
</selector>

第四步:menu写法,新建下menu文件夹,取名navigation.xml。——icon就随便来了。

<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:id="@+id/home_navigation"
        android:icon="@drawable/airplane"
        android:orderInCategory="0"
        android:title="@string/sy" />
    <item
        android:id="@+id/se"
        android:icon="@drawable/bluetooth"
        android:orderInCategory="1"
        android:title="@string/se" />
</menu>

第五步,新建两个碎片,blankFragment,blankFragment2。

第六步,新建一个Java,取名ViewPager2Adapter。

public class ViewPager2Adapter extends FragmentStateAdapter {
    BlankFragment blankFragment = new BlankFragment();
    BlankFragment2 blankFragment2 = new BlankFragment2();

    public ViewPager2Adapter(@NonNull FragmentActivity fragmentActivity) {
        super(fragmentActivity);
    }

    public int getItemCount() {
        return 2;
    }

    @NonNull
    public Fragment createFragment(int position) {
        switch (position) {
            case 0:
                return blankFragment;
            case 1:
                return blankFragment2;
        }
        return null;
    }
}

第七步,MainActivity写法:

public class MainActivity extends AppCompatActivity {
    ViewPager2 viewPager2;
    NavigationBarView mNavigationView;
    MenuItem menuItem;

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

    private void init() {
        ViewPager2Adapter adapter = new ViewPager2Adapter(this);
        viewPager2 = findViewById(R.id.ViewPager2);
        mNavigationView = findViewById(R.id.navigation);
        mNavigationView.setOnItemSelectedListener(mOnItemSelectedListener);
        viewPager2.registerOnPageChangeCallback(new ViewPager2.OnPageChangeCallback() {
            @Override
            public void onPageSelected(int p) {
                menuItem = mNavigationView.getMenu().getItem(p);
                menuItem.setChecked(true);
            }
        });
        viewPager2.setAdapter(adapter);
    }

    private final NavigationBarView.OnItemSelectedListener mOnItemSelectedListener
            = new NavigationBarView.OnItemSelectedListener() {
        @Override
        public boolean onNavigationItemSelected(@NonNull MenuItem item) {
             menuItem = item;
             if (item.getItemId() == R.id.home) {
                viewPager2.setCurrentItem(0);
                return true;
            } else if (item.getItemId() == R.id.se) {
                viewPager2.setCurrentItem(1);
                return true;
            }
            return false;
        }
    };
}

写在最后:

实现多个Fragment滑动翻页,或者通过底部导航栏翻页。并实现Fragment与Fragment之前传值,和Fragment与宿主Activity之间传值。并且解决了viewPager2内存泄漏的问题;提供了FrameLayout布局中控件居中的方案。请移步下载:

https://download.csdn.net/download/u011501017/87693049文章来源地址https://www.toymoban.com/news/detail-471814.html

到了这里,关于FragmentPagerAdapter被弃用后的代替方案的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • SpringSecurity学习记录(WebSecurityConfigurerAdapter被弃用,SecurityConfig新玩法)

    目录 0、写在前面 1、简介 2、起步 3、认证 3.1、认证流程的理解 3.2、认证思路 3.3、认证实现 4、授权 4.1、授权的介绍 4.2、授权的实现 5、写在最后         项目要用,本人不会,遂有此文。仅用于个人交流学习使用,侵权删。         SpringSecurity 是一个安全管理框架,和

    2024年02月07日
    浏览(42)
  • WebSecurityConfigurerAdapter被弃用Spring Security基于组件化的配置和使用

    在Spring Security 5.7及之后的版本中 WebSecurityConfigurerAdapter 将被启用,安全框架将转向基于组件的安全配置。 spring security官方文档 Spring Security without the WebSecurityConfigurerAdapter 如果使用的Spring Boot版本高于低于2.7.0、Spring Security版本高于5.7,就会出现如下的提示: 1、被启用的原因

    2024年02月02日
    浏览(44)
  • Android Handler被弃用,那么以后怎么使用Handler,或者类似的功能

    Android API30左右,Android应用在使用传统写法使用Handler类的时候会显示删除线,并提示相关的方法已经被弃用,不建议使用。 Android studio中的显示和建议: 看下官方API关于此处的解释:  简要说就是如果在实例化Handler的时候不提供Looper, 可能导致操作丢失(Handler 没有预估到新

    2023年04月21日
    浏览(40)
  • Unity打包APK错误:‘android.enableR8‘选项已被弃用,不应再使用

    Unity打包APK错误:\\\'android.enableR8’选项已被弃用,不应再使用 在Unity游戏开发中,我们经常需要将游戏打包成APK文件以在Android设备上进行测试或发布。然而,有时候在打包APK的过程中,可能会遇到一些错误。其中一个常见的错误是 “The option ‘android.enableR8’ is deprecated and sh

    2024年02月08日
    浏览(59)
  • Python错题集-7:DeprecationWarning: Conversion of an array with ndim(被弃用警告)

    DeprecationWarning: Conversion of an array with ndim 0 to a scalar is deprecated, and will error in future. Ensure you extract a single element from your array before performing this operation. (Deprecated NumPy 1.25.)   X[i] = np.random.normal(loc=Ex, scale=np.abs(Enn), size=1) DeprecationWarning: Conversion of an array with ndim  是一个警告,通常出

    2024年04月09日
    浏览(43)
  • Elasticsearch8.x版本中RestHighLevelClient被弃用,新版本中全新的Java客户端Elasticsearch Java API Client中常用API练习

    在Es7.15版本之后,es官方将它的高级客户端RestHighLevelClient标记为弃用状态。同时推出了全新的java API客户端Elasticsearch Java API Client,该客户端也将在Elasticsearch8.0及以后版本中成为官方推荐使用的客户端。 Elasticsearch Java API Client支持除Vector title search API和Find structure API之外的所有

    2023年04月08日
    浏览(50)
  • Redis开源协议变更!Garnet:微软开源代替方案?

    Garnet:微软开源的高性能替代方案,秉承兼容 RESP 协议的同时,以卓越性能和无缝迁移能力重新定义分布式缓存存储! - 精选真开源,释放新价值。 最近,Redis修改了开源协议,从BSD变成了 SSPLv1和 RSALv2 的双重许可,而RSALv2 和 SSPLv1,都并未被 OSI 正式认可。OSI 认为

    2024年04月14日
    浏览(34)
  • python3更新pip提示DEPRECATION(使用 distutils 配置文件配置安装方案已弃用)

    一般在使用pip install xxx之后会有黄色的提示信息,提示当前pip版本过低,请升级到最近版本,并给出了升级命令; pip install --upgrade pip -i http://pypi.douban.com/simple/ 提示需要增加 ‘–trusted-host pypi.douban.com’ 输入pip3 -V验证一下pip版本: pip -V OK,更新成功!

    2024年02月13日
    浏览(39)
  • vue项目用后端返回的文件流实现docx和pdf文件预览

    写这篇文章的目的,是因为我比较懒,想把代码记录一下,方便日后使用;哈哈,如果你也需要,也可以复制粘贴啊,为了方便自己和需要的人知道怎么使用,我尽量写的详细一点,没有什么技术难点,就是简单的记录,万一能帮到需要的人呢,也是一件美事; 其实也就是使

    2023年04月20日
    浏览(55)
  • TypeScript选项‘importsNotUsedAsValues‘和‘preserveValueImports‘弃用

    TypeScript 从5.0开始,选项“importsNotUsedAsValues”和“preserveValueImports”已经被标记为Deprecated,并将在TypeScript5.5之后停止支持,可以使用“verbatimModuleSyntax”选项替代。 默认情况下,假如你在TypeScript中写下如下代码: TypeScript检测到您只对类型定义导入,就会完全删除导入。输出

    2023年04月17日
    浏览(26)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包