- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有一个包含特定内容的 Activity
。现在我需要创建一个带有选项卡的新屏幕,以便此 Activity 的内容成为其中一个选项卡的内容。我知道我可以用 ViewPagerIndicator 做标签, 例如。但是,为了做到这一点,我需要将屏幕实现为 Fragment
。问题在于当前的实现严重依赖于 Activity
层次结构(对父类(super class)方法的大量调用等)。所以,我不能简单地让当前类扩展 Fragment
。在这种情况下,我还有哪些其他选择?
最佳答案
Now I need to create a new screen with tabs, so that the content of this activity will become the content of one of those tabs
将 Activity 作为选项卡的内容已被弃用近三年。
The problem is that the current implementation relies heavily on the Activity hierarchy (lots of calls to methods on the superclass, etc). So, I cannot simply make the current class extend Fragment.
将大部分“对父类(super class)方法的调用”替换为使用 getActivity()。
作为前缀,在相关的地方。
What other options do I have in this case?
您可以完全删除 Activity 并将您的 UI 重写为自定义 View 。这比将它们转换为 fragment 需要更多的工作。
或者,您可以不使用制表符。
关于android - 如何使用 ViewPagerIndicator 的 Activity ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20081639/
当我同步 gradle 时出现此错误: 错误:未找到 Artifact “com.viewpagerindicator:library:2.4.1:library.aar”。 我的 gradle 是:
我的应用使用 Actionbarsherlock 和 ViewpagerIndicator。每个页面使用 1 个片段。我希望每个页面都有不同的操作栏菜单,那么我该如何存档呢? 我已经尝试在每个 She
我从 http://www.zylinc.com/blog-reader/items/viewpager-page-indicator.html 中为 viewpagerindicator 引用了此代
我尝试使用 viewpagerindicator 但控制台错误总是以某种方式显示: E/AndroidRuntime(871): Caused by: java.lang.ClassNotFoundE
我正在使用JakeWharton我的横向应用程序上有 ViewPagerIndicator,但我认为我搞乱了布局。 ViewPagerIndicator 不显示。我刚刚开始学习 Android 开发,
我有一个使用 Viewpagerindicator 的应用程序。我正在使用它的标签部分。我使用黑色背景和默认的蓝色指示器颜色。我想在我的应用程序中添加一个操作栏,所以我开始使用 Actionbarsh
我正在使用 http://viewpagerindicator.com/图书馆。我想在 Gmail 应用程序上创建一个 TitlePageIndicator,如下图所示: 我确实想实现同样的事情,第一
我正在使用“ViewPagerIndicator”库在布局中间获取选项卡。我将“TabPageIndicator”和“ViewPager”放在“ScrollView”中。 我的问题是选项卡可见,但内容
我被 Jake Wharton ViewPagerIndicator 困住了。 问题是,当我尝试制作一个 Tab indicator - 我得到的结果与我需要的完全不同,我无法设置它的样式或使其表现得
当我将 ViewPagerIndicator 库添加到工作中的 android 项目时,项目强制关闭并且不再工作。 当我删除库时,项目再次运行。 我有那些日志错误:http://pastesite.c
我已经整合了CirclePageIndicator到 viewpager。我正在尝试更改填充颜色和页面颜色,但它仅显示默认颜色。下面是我正在尝试的代码。 布局 类 mViewPager.set
首先,我使用以下链接中的 ViewPagerIndicator 来显示我的 view-pager 中的观看次数:http://viewpagerindicator.com/ 我使用了 CirclePa
我需要创建四个不同的布局,每个布局对应一个 ViewPagerIndicator 页面。我怎样才能做到这一点? ViewPagerIndicator 已经在工作,但我正在使用来自 http://vie
我是 Android 开发新手。我设法实现了 ViewPagerIndicator,并想知道是否可以使用图像而不是选项卡标题。如果是的话,我想知道怎么做。如果没有,我们还有哪些其他选择?提前致谢...
我正在尝试使用“示例样式标签”示例使用 ViewPagerIndicator 中的标签文本显示在 2 行中。这是我到目前为止所做的: 在SampleTabsStyled.java ,我对 Google
我正在尝试在我的项目中使用 Jake Wharton 的 ViewPagerIndicator 库,我遵循了此处列出的简单教程: http://viewpagerindicator.com/ 但是当我
我使用 ActionBarSherlock 和 ViewPagerIndicator 库来实现滑动效果和操作栏。结果,我可以滑动不同的Fragments,但不显示指示器标题。 这是我的 Fragmen
使用来自 ViewPagerIndicator 的 CirclePageIndicator我的应用程序有时会崩溃。这是堆栈跟踪: System.MethodAccessException: Metho
我正在尝试在我的应用中实现 viewpagerindicator。 我正在使用 viewpagerindicator 库。我的代码在下面的链接中。 http://pastebin.com/TRUazP
如何将库添加到我的项目中?我从这个网站下载了模块。 http://viewpagerindicator.com/#download . 我尝试将 gradle 文件更改为 buildscript {
我是一名优秀的程序员,十分优秀!