问题标签 [android-pageradapter]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
java - 未为 Home.ImagePagerAdapter 类型定义方法 setOnPageChangeListener(ViewPager.SimpleOnPageChangeListener)
这是我第一次使用 ViewPager 构建东西,我需要一些帮助。我正在尝试实施此处找到的解决方案:
ViewPager.SimpleOnPageChangeListener 不起作用
但是,当我尝试这样做时 - 我最终得到以下结果:
资源:
编辑:
java - 使用 ViewPager / PagerAdapter 更改字符串
我有一个 JSON 请求,它得到了 YouTube 的响应:
我想使用可滑动的页脚图像(pagerAdapter)来更改字符串 PLAYLIST 的值。我主要关心的是试图弄清楚如何使用如下所示的PagerAdapter来设置以下内容:
然后在PagerAdapter设置 PLAYLIST 的值后立即使用 PLAYLIST 的新值创建一个播放列表:
我创建了一个包含我想使用的值的新字符串数组。我现在的问题是:如何修改下面的源代码以使用数组值之一设置 PLAYLIST 的值并执行新的播放列表?(目前我的源代码编译但是当我刷PagerAdapter - 没有任何反应)
当前无法使用的寻呼机适配器:
截屏:
附加信息:
java - Android / Java - Updating listArray to call View in adapter
I'm attempting to implement a viewPager
which will allow me to change the Youtube playlist (String PLAYLIST
) depending on the position of the ViewPager. I was told in another StackOverflow post I need to: "update the listArray prior to calling 'notifyDataSetChanged()'. The call to notify is the signal to update the View in the adapter you are using. In your code, the getYouTube... needs to update and array object that the adapter has a reference to. You should be able to get it by implementing connections in your code."
^ - SOURCE: Use a ViewPager / PagerAdapter to change a string
According to the response to my previous SO post linked above - I belive I'll need to use something like this:
^ - SOURCE: http://www.piwai.info/android-adapter-good-practices/
How My Current Source Works:
I have a JSON request which contains the String PLAYLIST that gets a response from YouTube :
I would like to use a swipeable footer image (pagerAdapter) to change the value of the string PLAYLIST. My primary concern is trying to figure out how to use the PagerAdapter shown below to set the following:
then immediately after the value of PLAYLIST is set by the PagerAdapter, create a playlist using the new value of PLAYLIST:
new GetYouTubeUserVideosTask(responseHandler, PLAYLIST).execute();
I've created a new string array containing the values I'd like to use. My question now that all that is understood is: how can I modify the source below to set the value of PLAYLIST using one of the array values and execute the new playlist? (Currently my source compiles but when I swipe the PagerAdapter - nothing happens)
Screenshot:
CURRENT SOURCE:
java - ViewPager/PagerAdapter:更改字符串的值
我有一个 youtube 播放列表:
...
我有一个 ViewPager/PagerAdapter:
截屏:
问题:
我如何连接这两者 - 所以当我刷 ViewPager/PagerAdapter: 它改变了值: String PLAYLIST
我需要根据 ViewPager/PagerAdapter 选择更改它的值。
例子:
或者
java - Java / Android - 无法到达断点
我正在尝试在我的源代码中实现 viewPager,并在该行设置了一个断点:
但是由于某种原因,在左右滑动 viewPager 时,我似乎从未到达调试器中的断点。我已经查看了很多次我的来源,但我似乎无法准确指出是什么原因造成的。
非常感谢任何建议。
android - 不推荐使用的 PagerAdapter.instantiateItem() 方法
我很好奇为什么instantiateItem
不赞成使用它的新版本。变化是它现在接收ViewGroup
而不是更通用的View
.
已弃用的方法
新方法
注意:此更改也发生在destroyItem
, startUpdate
, finishUpdate
&setPrimaryItem
上。
java - ImagePagerAdapter - 从不在本地使用构造函数/未使用该字段的值
我在实现 ImagePagerAdapter 时遇到了一些麻烦 - 由于以下两个警告,我相信我没有正确实现它:
&
我不确定我到底做错了什么(这是我第一次使用 PagerAdapter 构建任何东西)。
JAVA
非常感谢任何建议。
java - setOnPageChangeListener 不调用 onPageSelected
我使用以下示例设置了一个 simpleonpagechangelistener:
Android SimpleOnPageChangeListener - 确定滑动方向
但是,当我执行代码然后滑动 viewpager 时,我希望调用以下行:
然而,它似乎从来没有这样做——这导致了一个非功能性的 viewPager。
有什么建议么?
XML:
android - PagerTabStripe 和图标居中
我的 PageTabStripe 有点问题。文本不像图像那样居中。
在这里您可以看到问题的图像:
这就是我添加图像的方式:
这是 XML:
我希望有人能帮助我。:)
android - PagerAdapter getCount() is called many times
I am using FragmentStatePagerAdapter
. for some reason the getCount() method is beeing called a lot of times before any fragment is even visible... Is it a normal behavior?