How can i set a tag for viewpager fragments?(如何为 viewpager 片段设置标签?)
问题描述
我正在使用带有 4 个选项卡和一个 viewpager 以及每个选项卡的 4 个片段类的slidingTabLayout.
I,m using slidingTabLayout with 4 tabs and a viewpager and 4 fragment class for every tab.
当用户单击某个按钮时,我需要在我的项目中重新加载我的一个片段(第一个选项卡),为此我需要为该片段添加一个标签
i need to reload one of my fragments (first tab) in my project when user click some button, and for this i need to have a tag for that fragment
我的问题是:如何为其中一个 viewpagers 片段设置标签???
my question is : how can i set a tag for one of viewpagers fragment???
我的 MainActivity 选项卡和 viewpager 代码:
My MainActivity tab and viewpager codes:
public class MainActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
Toolbar toolbar;
ViewPager pager;
ViewPagerAdapter adapter;
SlidingTabLayout tabs;
CharSequence Titles[]={"نوع","قیمت","برند","همه"};
int Numboftabs = 4;
@Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, "درج آگهی رایگان", Snackbar.LENGTH_LONG)
.setAction("Action", null).show();
}
});
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
// Creating The ViewPagerAdapter and Passing Fragment Manager, Titles fot the Tabs and Number Of Tabs.
adapter = new ViewPagerAdapter(getSupportFragmentManager(),Titles,Numboftabs);
// Assigning ViewPager View and setting the adapter
pager = (ViewPager) findViewById(R.id.pager);
pager.setAdapter(adapter);
// Assiging the Sliding Tab Layout View
tabs = (SlidingTabLayout) findViewById(R.id.tabs);
tabs.setDistributeEvenly(true); // To make the Tabs Fixed set this true, This makes the tabs Space Evenly in Available width
// Setting Custom Color for the Scroll bar indicator of the Tab View
tabs.setCustomTabColorizer(new SlidingTabLayout.TabColorizer() {
@Override
public int getIndicatorColor(int position) {
return getResources().getColor(R.color.colorWhite);
}
});
// Setting the ViewPager For the SlidingTabsLayout
tabs.setViewPager(pager);
pager.setCurrentItem(3);
} and ....
非常感谢
推荐答案
有几个解决方案.
1).当 FragmentPagerAdapter
将 Fragment
添加到 FragmentManager
时,它会根据 Fragment
将被放置.因此,您可以使用这些代码行在 ViewPager
中简单地获取当前可见的 Fragment
1). When the FragmentPagerAdapter
adds a Fragment
to the FragmentManager
, it uses a special tag based on the particular position that the Fragment
will be placed. So you can simply get the current visible Fragment
in your ViewPager
using these lines of code
Fragment fragment = getSupportFragmentManager().findFragmentByTag("android:switcher:" + R.id.pager + ":" + ViewPager.getCurrentItem());
// based on the current position you can then cast the page to the correct Fragment class and call some method inside that fragment to reload the data:
if (0 == ViewPager.getCurrentItem() && null != fragment) {
((TabFragment1)fragment).reloadFragmentData();
}
2).您应该跟踪 FragmentStatePagerAdapter
中的所有活动片段.对于演示示例,您可以参考第二种方法 这里
2). You should keep track of all the active fragments in the FragmentStatePagerAdapter
. For demo sample you can refer to second approach here
3).您可以使用 EventBus
从任何地方将事件发布到您的 Fragment
.您所要做的就是为该特定事件注册您的 Fragment
.官方文档参考 this
3). You can make use of EventBus
to post events to your Fragment
from anywhere. All you have to do is to register your Fragment
for that specific event. For official documentation refer this
这篇关于如何为 viewpager 片段设置标签?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何为 viewpager 片段设置标签?
基础教程推荐
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01