问题标签 [swipeview]

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.

0 投票
1 回答
810 浏览

android - 制作带有滑动视图的操作栏?

当谈到在 android 中编码时,我几乎是一个新手,我想知道如何制作一个带有滑动视图的操作栏。

我的代码: http: //pastebin.com/iHZn27H3

错误

我该如何解决这些错误?

编辑:错误现在消失了,但我无法切换标签,只能通过单击来滑动。代码: http: //pastebin.com/iHZn27H3

0 投票
0 回答
503 浏览

android - 为什么当我按下与滑动视图链接的按钮时应用程序会崩溃?

我想按一个按钮并转到滑动视图菜单。我有一个 MainMenu.java 类和 XML main_menu.xml,我想用一个按钮从 MainMenu.java 导航到 ThirdMenu.java,它是一个 SwipeView(选项卡和滑动)。

这是 MainMenu.java 的代码:

这是 ThirdMenu.java(它是 Android 生成的代码):

我在平板电脑上运行该应用程序,当我按下 Button1“b1”时它崩溃了。

这是 manifest.xml 文件:

为了制作一个可以工作的应用程序,我应该进行哪些修改?谢谢!

0 投票
1 回答
601 浏览

android - 无法点击标签切换片段

所以现在我终于让滑动视图工作了,但现在我只能滑动来更改选项卡,当我点击一个选项卡时,什么也没有发生。

我的代码: http: //pastebin.com/p3Cs1qm1

我认为问题出在第 31 行,因为当我取消注释该行时,我收到错误“未知实体'寻呼机'”,它可能是该行允许我更改标签,我点击它们,但我必须知道如何删除错误消息。

0 投票
1 回答
3100 浏览

android - how can i use swipe view in custom dialog android

i have a list view when user clicks on an item a dialog opens and shows a list View item's text now i want to add a swipe view to dialog, to let user swipes to the next or previous text of list view's item ?

0 投票
1 回答
1331 浏览

android - 滑动并更改列表视图元素的布局

我试图在我的自定义列表视图上实现以下效果:当用户向右滑动列表元素时,滑动列表项的布局将改变其布局。我已经尝试过来自 GitHub 的 SwipeListView 方法,但我没有设法通过它来实现。

你能给我一些关于如何达到预期效果的想法吗?另请注意,我将合并适配器用于具有多个标题和部分的列表视图。

谢谢!

0 投票
0 回答
3432 浏览

android - 带有标签的 Android 滑动视图

如何像在 google play 商店中一样在滑动之后添加标签下划线。目前,标签行仅在我完成滑动时移动。另外,我如何在滑动时在片段之间添加背景。

0 投票
0 回答
202 浏览

iphone - 每次滑动视图时索引 0

每次索引的索引都是0里面:

完整代码可以在这里查看

每次我有 index = 0 的原因是什么?

0 投票
0 回答
430 浏览

android - Android Swipe tabs Issue: Can't seem to update the UI and the result comes repeated n times

I'm using two classes. One for the background service where i'm doing several of gatherings of information, and the other I decided to use a swipe tab view to manage and organize my information/data. In the background service (like I said) i'm retrieving information (mostly string types) and sending them via intent to the Main Activity, this activity receives it via a broadcastreceiver (this part works fine). Now the problem i'm having is that when i try to distribute the information the the diferent tabs, it comes repeated and doesn't seem to refresh now my most crucial problem is the reapeating information part. Going to place my code and see if any one of you brilliant minds :D can help me. I hope you can.

Defining the intent

Starting the broadcastreceiver to call the Background service

so on...

And storing them in a string

Any ideas?! =D

0 投票
1 回答
403 浏览

android - 使用 SherlockFragmentActivity 适用于较新的 android 手机,但不适用于旧型号

所以我在较新的 android 上测试了这段代码,当我在旧版本上测试它并单击按钮将我带到带有 SwipeView 和选项卡的页面时,我收到一个错误:

应用程序意外停止。请再试一次。

我已将 android 清单中的 minimumSDK 级别设置为 7。我不确定为什么它不能在较旧的 android 手机上运行。

这是我的 SwipeView 类的代码:

0 投票
1 回答
368 浏览

android - jQueryMobile Swipe 上的查询

我已经使用以下代码实现了页面滑动。

使用上面的代码,我可以通过滑动来移动前后页面。

以下是我的几个查询

  1. 假设如果要在滑动视图中实现 10 个页面,我需要编写 15 个以上的方法来在左右滑动时移动哪个页面。是否有任何其他简单的选项,如数组适配器来添加所有页面?
  2. 假设如果我移动这些页面六次,之后如果我按返回键关闭应用程序,则两个相同的页面显示六次。但它应该只显示一次,并且需要在第三次点击时退出应用程序。
    如何实施?