当前位置: 首页 > 知识库问答 >
问题:

Recyclerview在整个生命周期中为空

景远航
2023-03-14

我有一个让我发疯的问题,在网上搜索了好几个小时,但找不到解决办法。我想在向列表添加新数据时,在我的recyclerview的第一个视图上设置动画。但是我不能,因为recyclerview是空的。

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    orientation = getResources().getConfiguration().orientation;

    model = ViewModelProviders.of(getActivity()).get(ViewModelAdvices.class);
    model.getAdvices().observe(this, new Observer <List <Advice>>() {

        //Update recyclerview automatically when data is changed
        @Override
        public void onChanged(List <Advice> advices) {
            filtered_advices_list.clear();
            filtered_advices_list.addAll(advices);
            adapter_recycler_view.notifyDataSetChanged();

        }
    });
}

@Override
public void onResume() {
    super.onResume();
    Animation animation = AnimationUtils.loadAnimation(getContext(), R.anim.test_item);
    View v = recycler_view.getChildAt(0);
    v.startAnimation(animation);

}



@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.show_advices_fragment, container, false);

    setupLayoutDifferences(view);

    recycler_view = (RecyclerView) view.findViewById(R.id.recycler_view);
    layout_manager = new LinearLayoutManager(getContext());
    recycler_view.setLayoutManager(layout_manager);
    adapter_recycler_view = new AdapterRV(filtered_advices_list);
    recycler_view.setAdapter(adapter_recycler_view);

 spinner_1 = (Spinner) view.findViewById(R.id.spinner_1);
    adapter_spinner_1 = ArrayAdapter.createFromResource(view.getContext(), R.array.categories, android.R.layout.simple_spinner_item);
    adapter_spinner_1.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
    spinner_1.setAdapter(adapter_spinner_1);

    spinner_1.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
        @Override
        public void onItemSelected(AdapterView <?> parent, View view, int position, long id) {
            String category = spinner_1.getItemAtPosition(spinner_1.getSelectedItemPosition()).toString();
            model.setCategory(category);
        }
        @Override
        public void onNothingSelected(AdapterView <?> parent) { }
    });

    return view;
    }
} 

show_advices_fragment

    <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:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:background="@color/colorBlueGreen"
        android:paddingBottom="6dp">



    <Spinner
            android:id="@+id/spinner_1"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:backgroundTint="@color/colorBlack" />

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom">

            <Button
                android:id="@+id/button_add_activity"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:layout_marginTop="6dp"
                android:layout_marginLeft="6dp"
                android:layout_marginRight="6dp"
                android:visibility="gone"
                android:text="@string/button_add_activity" />

            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/recycler_view"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_above="@+id/button_add_activity"
                android:background="@color/colorLightGrey"
                android:scrollbars="vertical"
                />

        </RelativeLayout>

    </LinearLayout>

列表项目活动主目录

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:background="@color/colorWhite"
android:orientation="horizontal"
android:paddingBottom="5dp"
android:paddingTop="5dp"
android:paddingLeft="3dp"
android:paddingRight="3dp"
android:weightSum="3">

<TextView
    android:id="@+id/text_view_advice"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/border"
    android:textColor="@color/colorPrimary"
    android:paddingRight="4dp"
    android:layout_weight="1"
    android:text="TextView" />

<TextView
    android:id="@+id/text_view_author"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textColor="@color/colorGrey"
    android:layout_weight="2"
    android:gravity="center"
    android:text="TextView" />

 </LinearLayout>

还有test_item

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="@android:integer/config_longAnimTime">

    <translate
        android:interpolator="@android:anim/decelerate_interpolator"
        android:fromXDelta="100%p"
        android:toXDelta="0"
        />

    <alpha
        android:fromAlpha="0.5"
        android:toAlpha="1"
        android:interpolator="@android:anim/accelerate_decelerate_interpolator"
        />

</set>

在onResume中,我想我处于最后一个生命周期,回收人员视图已经在onCreateView中构建。我想在我到达恢复之前,回收人员视图的构建还没有完成,但是我如何解决这个问题呢?如果我在片段已经加载的时候用鼠标点击动画,它就可以工作,但当我切换片段并且重新构建回收视图时就不行了。

共有3个答案

戚浩淼
2023-03-14

谢谢你试图帮助我。问题是我的应用程序可能不是组织得最好的,所以在我的回收视图完成之前,一切都运行在它从ViewModel获得的列表中。但是在一个单独的线程上做动画就像一种魅力,那么我也可以完全控制动画。

if(action.equals("addData")) {

            Thread thread = new Thread() {
                @Override
                public void run() {
                    try {

                        boolean recycler_view_loading = true;

                        while(recycler_view_loading ) {
                            sleep(250);

                            if (recycler_view.getChildAt(0) != null) {

                                Animation animation = AnimationUtils.loadAnimation(getContext(), R.anim.item_animation_side);
                                View v = recycler_view.getChildAt(0);
                                v.startAnimation(animation);
                                recycler_view_loading  = false;
                            }
                        }
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            };
            thread.start();
        }
彭烨熠
2023-03-14

你不能依赖于onResume()在碎片,因为它不是100%调用后onCreateView()在一些Android版本(更多细节在碎片onResume()

您可以等待,直到RecyclerView使用OnGlobalLayoutListener完成对所有项目的充气,然后显示第一个项目的动画:

recycler_view.getViewTreeObserver()
             .addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
                 @Override
                public void onGlobalLayout() {

                  // show the animation
                  Animation animation = AnimationUtils.loadAnimation(getContext(), R.anim.test_item);
                  View v = recycler_view.getChildAt(0);
                  v.startAnimation(animation);

                  // remove listener so that this won't be called multiple time.
                  recycler_view.getViewTreeObserver().removeOnGlobalLayoutListener(this);
            }
        }); 
宰鸿博
2023-03-14

试试这个

@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        orientation = getResources().getConfiguration().orientation;

        model = ViewModelProviders.of(getActivity()).get(ViewModelAdvices.class);
        model.getAdvices().observe(this, new Observer<List<Advice>>() {

            //Update recyclerview automatically when data is changed
            @Override
            public void onChanged(List<Advice> advices) {
                filtered_advices_list.clear();
                filtered_advices_list.addAll(advices);

            }
        });
    }

    @Override
    public void onResume() {
        super.onResume();
        Animation animation = AnimationUtils.loadAnimation(getContext(), R.anim.test_item);
        View v = recycler_view.getChildAt(0);
        v.startAnimation(animation);

    }


    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.show_advices_fragment, container, false);

        setupLayoutDifferences(view);

        recycler_view = (RecyclerView) view.findViewById(R.id.recycler_view);
        layout_manager = new LinearLayoutManager(getContext());
        recycler_view.setLayoutManager(layout_manager);
        populateAdapter();


        spinner_1 = (Spinner) view.findViewById(R.id.spinner_1);
        adapter_spinner_1 = ArrayAdapter.createFromResource(view.getContext(), R.array.categories, android.R.layout.simple_spinner_item);
        adapter_spinner_1.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
        spinner_1.setAdapter(adapter_spinner_1);

        spinner_1.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
            @Override
            public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
                String category = spinner_1.getItemAtPosition(spinner_1.getSelectedItemPosition()).toString();
                model.setCategory(category);
            }

            @Override
            public void onNothingSelected(AdapterView<?> parent) {
            }
        });

        if (adapter_recycler_view != null){
            adapter_recycler_view.notifyDataSetChanged();
        }

        return view;
    }

    private void populateAdapter() {
        adapter_recycler_view = new AdapterRV(filtered_advices_list);
        recycler_view.setAdapter(adapter_recycler_view);
    }
 类似资料:
  • 注:本文档提供的生命周期指的是 Universal App 的生命周期,它依赖 rax-app 提供的 runApp方法。 App 级生命周期 launch  在 App 启动时触发 使用生命周期 你可以使用 rax-app 提供的 useAppLaunch 来注册 App 级别的生命周期。 示例: import { useAppLaunch } from 'rax-app'; useAppLa

  • 我们大致为WebAPplication设计了4个生命周期: 请求初始化其实就是从URL中解析提取出{module}, {action}, {method}; 然后再根据{module}, {action}, {method}找到对应的Controller文件; 然后再调用对应的{method},完了之后再发送响应。当然响应的过程中肯定是要顺带着解析下模板标签啦。 恩,这就完了,貌似感觉很简单啊。

  • 如下图. 可以看出,基本周期是: created mounted updated (update 可以理解成人肉手动操作触发) destroyed 上面步骤中的 1,3,4都是自动触发。 每个步骤都有对应的 beforeXyz方法 所以, 我们一般使用mounted 作为页面初始化时执行的方法

  • 概览 组件的生命周期分为三个阶段:挂载、渲染、卸载,下图展示了解组件在整个生命周期中所涉及到的方法调用、原型方法调用和状态变化。 挂载阶段 从组件实例被创建再到被插入根组件树中,所经历的操作如下: 初始化组件实例。 根据组件类型绑定对应的原型。 调用 proto->init() 原型方法。 标记组件需要刷新全部样式。 因父组件变为另外一个组件,触发 link 事件。 更新阶段 当组件被插入到根组件

  • 框架生命周期 Hyperf 是运行于 Swoole 之上的,想要理解透彻 Hyperf 的生命周期,那么理解 Swoole 的生命周期也至关重要。 Hyperf 的命令管理默认由 symfony/console 提供支持(如果您希望更换该组件您也可以通过改变 skeleton 的入口文件更换成您希望使用的组件),在执行 php bin/hyperf.php start 后,将由 Hyperf\Se

  • Lifecycle 生命周期函数 用于监听游戏进入前台、后台、最大化、最小化、网络状态改变、游戏关闭、游戏分享事件。 取消监听需要传入和监听函数同一个回调函数。 BK.onEnterForeground(Function()) 监听游戏进入前台事件,手Q进程从后台回到前台 手Q版本:>7.6.5 示例: function enterForegroundListener(){ BK.Scri