英文:
ViewPager2 not updating fragment with POSITION_NONE
问题
我已经实现了ViewPager2,并且使用了两个选项卡。我希望能够使用以下代码在连续滑动之间刷新每个片段,但是这并没有起作用。
@Override
public int getItemCount() {
return POSITION_NONE;
}
它抛出了以下崩溃错误:
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.myapp, PID: 5842
java.lang.NullPointerException: Attempt to invoke virtual method 'com.google.android.material.tabs.TabLayout$Tab com.google.android.material.tabs.TabLayout$Tab.setIcon(int)' on a null object reference
请建议适当的方法来实现这一目标。
英文:
I have implemented ViewPager2 and implemented with 2 tabs. I want to refresh each fragment between consecutive swipe with the following code but it is not working.
@Override
public int getItemCount() {
return POSITION_NONE;
}
It throws following crash error:
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.myapp, PID: 5842
java.lang.NullPointerException: Attempt to invoke virtual method 'com.google.android.material.tabs.TabLayout$Tab com.google.android.material.tabs.TabLayout$Tab.setIcon(int)' on a null object reference
Please suggest appropriate way to accomplish this.
答案1
得分: 0
问题已解决,通过在片段生命周期的onResume方法中更新用户界面。
英文:
Solved, this issue by updating UI from onResume method of fragment life cycle.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论