繁体   English   中英

android viewpagerindicator多次调用getPageTitle()

[英]android viewpagerindicator calling getPageTitle() too many times

我正在使用viewpagerindicator作为我的android应用程序的一部分。 fragmentAdapter的getPageTitle在页面的每张幻灯片上被调用太多次。 我使用viewpagerindicator提供的示例应用程序对其进行了验证。

作为viewpagerindicator的一部分提供的示例应用程序只有4个片段/页面。 但是在每张幻灯片之后,每个位置的getPageTitle都会被调用近10到15次。 Logger语句随输出附在一起。

有什么办法可以避免这种情况?

 @Override
public CharSequence getPageTitle(int position) {
    Log.d("SAMPLE","Title Getting called for "+position);
  return TestFragmentAdapter.CONTENT[position % CONTENT.length];
} 


08-07 13:02:09.835: D/BatteryService(1501): update start
08-07 13:02:10.421: I/InputReader(1501): dispatchTouch::touch event's action is 0
08-07 13:02:10.421: I/InputDispatcher(1501): Delivering touch to current input target
08-07 13:02:10.421: D/PowerManagerService(1501): reactivateScreenLocksLocked mProxIgnoredBecauseScreenTurnedOff=false
08-07 13:02:10.421: I/PowerManagerService(1501): Ulight 1->3|0
08-07 13:02:10.437: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.437: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.445: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.445: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.445: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.445: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.445: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.445: D/SurfaceFlinger(1501): Layer[332660] [35] non-RGB565 reloads
08-07 13:02:10.460: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.460: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.460: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.460: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.460: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.460: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.460: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.476: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.476: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.476: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.484: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.484: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.484: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.484: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.500: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.500: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.500: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.500: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.500: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.500: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.500: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.515: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.515: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.515: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.515: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.515: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.515: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.539: I/InputReader(1501): dispatchTouch::touch event's action is 1
08-07 13:02:10.539: I/InputDispatcher(1501): Delivering touch to current input target
08-07 13:02:10.562: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.562: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.562: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.562: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.562: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.562: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.570: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.570: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.570: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.570: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.570: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.570: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.585: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.585: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.585: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.585: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.585: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.585: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.593: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.593: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.593: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.593: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.593: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.601: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.609: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.609: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.609: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.609: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.609: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.609: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.617: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.617: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.617: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.625: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.625: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.625: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.632: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.632: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.632: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.632: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.640: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.640: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.648: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.648: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.648: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.648: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.648: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.648: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.656: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.656: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.656: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.656: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.664: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.664: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.671: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.671: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.671: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.671: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.671: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.679: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.687: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.687: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.687: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.687: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.687: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.687: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.687: I/PowerManagerService(1501): Light Animator Finished curIntValue=143
08-07 13:02:10.695: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.695: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.695: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.695: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.695: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.695: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.703: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.703: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.703: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.703: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.710: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.710: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.718: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.718: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.718: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.718: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.718: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.718: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.726: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.726: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.726: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.726: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.726: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.726: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.734: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.734: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.734: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.734: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.742: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.742: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.765: D/SAMPLE(28147): Title Getting called for 0
08-07 13:02:10.765: D/SAMPLE(28147): Title Getting called for 1
08-07 13:02:10.773: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.773: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:10.773: D/SAMPLE(28147): Title Getting called for 2
08-07 13:02:10.773: D/SAMPLE(28147): Title Getting called for 3
08-07 13:02:11.421: D/wpa_supplicant(1637): CMD: DRIVER RSSI-APPROX
08-07 13:02:11.445: D/wpa_supplicant(1637): wpa_driver_priv_driver_cmd buf = xxxxxxxx len = 15, 15
08-07 13:02:11.445: D/wpa_supplicant(1637): CMD: DRIVER LINKSPEED
08-07 13:02:11.445: D/wpa_supplicant(1637): wpa_driver_priv_driver_cmd buf = xxxxxxxx len = 12, 12

它按预期工作。 适配器始终总是提前两页加载(因此,它需要当前,上一页和下一页的标题)。 如果要避免这种行为,可以尝试在viewpager实例上调用setOffscreenPageLimit(0)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM