gpt4 book ai didi

java - android - 全局布局刷新功能

转载 作者:行者123 更新时间:2023-12-01 10:26:15 27 4
gpt4 key购买 nike

编辑2:在我的 MainActivity 中,我有一个函数 (displayData),用于显示我的学校的替换内容。

public void displayData(List<Schoolday> results) {
TabLayout mainTabLayout = (TabLayout) findViewById(R.id.mainTabLayout);
ViewPager mainViewPager = (ViewPager) findViewById(R.id.mainViewPager);

// draw the tabs depending on the days from the file
mainTabLayout.removeAllTabs();
for (int n = 0; n < results.size(); n++) {
List<Subject> subjectsToDisplay = new ArrayList<>();
if (myPreferences.getBoolean(SHOW_WHOLE_PLAN, true)) {
subjectsToDisplay = results.get(n).getSubjects();
} else {
List<Subject> tempSubjectsToDisplay;
tempSubjectsToDisplay = results.get(n).getSubjects();
for (int i = 0; i < tempSubjectsToDisplay.size(); i++) {
if (tempSubjectsToDisplay.get(i).getCourse().contains(myPreferences.getString(CLASS_TO_SHOW, "None"))) {
subjectsToDisplay.add(tempSubjectsToDisplay.get(i));
}
}
}
results.get(n).setSubjects(subjectsToDisplay);

// only create a tab if there's any information to show within that tab
if (results.get(n).getSubjects().size() > 0) {
mainTabLayout.addTab(mainTabLayout.newTab().setText(results.get(n).getDate().substring(0, 6)));
}
}

PagerAdapter pagerAdapter = new PagerAdapter(getSupportFragmentManager(), mainTabLayout.getTabCount(), results);
mainViewPager.setAdapter(pagerAdapter);
mainViewPager.addOnPageChangeListener(new TabLayout.TabLayoutOnPageChangeListener(mainTabLayout));
mainTabLayout.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
@Override
public void onTabSelected(TabLayout.Tab tab) {
mainViewPager.setCurrentItem(tab.getPosition());

}

@Override
public void onTabUnselected(TabLayout.Tab tab) {
}

@Override
public void onTabReselected(TabLayout.Tab tab) {
}
});
}

这是我的主要布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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/main_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<android.support.design.widget.TabLayout
android:id="@+id/mainTabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:elevation="6dp"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:tabGravity="fill" />

<android.support.v4.view.ViewPager
android:id="@+id/mainViewPager"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_below="@id/mainTabLayout" />
</RelativeLayout>

这是代表 ViewPager 中页面的 fragment 的布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/mainSwipeContainer"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.RecyclerView
android:id="@+id/mainRecyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" />
</android.support.v4.widget.SwipeRefreshLayout>

</RelativeLayout>

每当 SwipeRefreshLayout 触发刷新时,我都需要调用函数 displayData。由于调用来自 ViewPager 的 fragment/页面内并且 displayData 不是静态的,因此如何调用此函数?

老问题:我已经搜索了很长一段时间但找不到答案。也许我寻找的是错误的东西——只要向我指出这一点就已经有帮助了。

我的项目 ( Vertretungsplan on github ) 显示我的学校的替代计划,可以以 xml 文件 ( xml file from school website ) 的形式查看/下载。然后我在我的应用程序中显示数据。我有一个 TabLayout (不同的选项卡代表不同的日期)和一个连接的 ViewPager。每个页面都使用一个 fragment 。每个 fragment 都包含一个 RecyclerView(用于显示结果),该 View 包装在 SwipeRefreshLayout 中。当我想使用 SwipeRefreshLayout 刷新数据时,我需要再次下载所有数据,然后更新所有页面以及 TabLayout(可能已添加新的一天,因此需要新选项卡)。由于我的刷新发生在 fragment 内,但我引用了 MainActivity 中的 TabLayout 和 ViewPager,所以我不知道如何正确访问所有元素以更新内容。

我的想法是设置一个广播,让我的 MainActivity 知道它需要刷新页面,因为它最初设置了整个布局,但也许有更好的解决方案?

我对 stackoverflow 有点陌生,所以请随时纠正我在这里提问的方式!如果您需要任何其他信息,请问我!我感谢您的帮助!!

最佳答案

有几种方法可以实现您的要求。最直接的方法是为 Fragment 使用的 Activity 创建一个接口(interface)。请参阅此处的文档:

http://developer.android.com/training/basics/fragments/communicating.html

FragmentActivity 分离的另一个选项(有些人可能认为这是一个优点)是使用 Intent。使用这种方法,您需要研究 onNewIntent 方法,因为它的工作原理并不明显。

任何一个都应该没问题,特别是因为您此时正在探索想法。

关于java - android - 全局布局刷新功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35345384/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com