- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个非常简单的设置伴侣应用程序(用于可穿戴表盘),它使用大约 8 个滑动页面来设置单选按钮的一些选项。我使用根据所选选项实例化的各个 fragment 。
public class SectionsPagerAdapter extends FragmentPagerAdapter {
...
@Override
public Fragment getItem(int position) {
// getItem is called to instantiate the fragment for the given page.
// Return a different static fragment depending on which menu item
// It isn't called if we already have the given fragment available
if ((position < 0) || (position >= mMenuItems.length)) return null;
String menu = mMenuItems[position];
//FIXME: We are setting the existing values when instantiated, which means they may not reflect
//actual current values when the fragment is displayed
if (menu.equals(getResources().getString(R.string.period_length))) {
return PeriodLengthFragment.newInstance(menu, mPeriodLength);
} else if (menu.equals(getResources().getString(R.string.home_team_color))) {
return HomeTeamColorFragment.newInstance(menu);
} else if (menu.equals(getResources().getString(R.string.away_team_color))) {
return AwayTeamColorFragment.newInstance(menu);
} else if (menu.equals(getResources().getString(R.string.number_of_periods))) {
return NumberOfPeriodsFragment.newInstance(menu,mNumberOfPeriods);
} else if (menu.equals(getResources().getString(R.string.interval_length))) {
return IntervalLengthFragment.newInstance(menu, mIntervalLength);
} else if (menu.equals(getResources().getString(R.string.count_up_or_down))) {
return CountUpOrDownFragment.newInstance(menu);
} else if (menu.equals(getResources().getString(R.string.about))) {
return AboutFragment.newInstance(menu);
} else if (menu.equals(getResources().getString(R.string.match_results))) {
return MatchResultsFragment.newInstance(menu,mHomeTeamScore,mAwayTeamScore );
}
return null;
}
我还提供了两个 float 操作按钮(“fabs”),您可以使用它们代替滑动,还可以提供视觉提示,表明还有其他设置页面:
FloatingActionButton fabPrev = (FloatingActionButton) findViewById(R.id.fab_previous);
FloatingActionButton fabNext = (FloatingActionButton) findViewById(R.id.fab_next);
//Make the floating action button invisible if it doesn't make sense
fabPrev.setVisibility(position == 0 ? View.INVISIBLE : View.VISIBLE);
fabNext.setVisibility(position == mMenuItems.length-1 ? View.INVISIBLE : View.VISIBLE);
不幸的是,虽然我可以在 getItem 方法中访问 position
(并相应地更改 fab 的可见性),但它是在页面实例化时调用的,而不是在显示时调用的。因为 PagerAdapter 实例化了下一页和上一页,这导致 fabs 被隐藏在错误的页面上。
在 PagerAdapter 或 FragmentPagerAdapter 中是否有任何我可以重写的方法,它被称为 onCreateView 并会给我位置?一个丑陋的解决方案是在实际 fragment 中设置 fab 可见性,但那样会如果我重新排列第一页和最后一页的位置,情况会很脆弱。
最佳答案
您可以使用 ViewPager 的 setOnPageChangeListener:
myViewPager.setOnPageChangeListener(new OnPageChangeListener() {
public void onPageScrollStateChanged(int state) {}
public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {}
public void onPageSelected(int position) {
// Check if this is the page you want.
}
});
关于java - 如何检测 FragmentPagerAdapter 显示的第一页或最后一页?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35417976/
SCENARIO 有两页,第一页是HomePage,它在flutter_bloc软件包的帮助下自动获取api数据。在首页(第一页)中,还有一个按钮,可在此代码Navigator.push(contex
我检查过类似的问题,但由其他人发布,但我仍然看不到我的代码有什么问题。 我刚刚从文档中复制了它 - https://symfony.com/doc/3.4/page_creation.html Luc
我已经编写了一段代码,使用Python中的Scrapy来抓取页面。下面我粘贴了 main.py 代码。但是,每当我运行我的蜘蛛时,它仅从第一页抓取(DEBUG:从抓取),这也是请求中的Referer标
我创建了一个 ios 图书阅读器应用程序。在这个应用程序中,我集成了 google drive 和 skydrive 。现在我可以从 google drive 和 skydrive 登录和检索数据了。
效果图: 功能简介:可使用上下键选中行,选中后点击修改,textbox获得gridview中的代码的数据。对你有帮助的话,请记得要点击“好文要顶”哦!!!不懂的,请留言。废话不多说了,贴码如下
我是一名优秀的程序员,十分优秀!