- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在尝试使用 ViewPagerIndicator (http://viewpagerindicator.com/) 时看到一个非常奇怪的错误。我已将其缩小到属于该库的 TitlePageIndicator。当我使用 TitlePageIndicator 时,我无法在选项卡之间滑动,并且我的 fragment 没有显示(尽管它们已创建并运行,但右上角的按钮是由应该显示的 fragment 创建的)。它看起来像这样:http://imgur.com/RJaI9 (对不起,新用户,所以我不能内联图片)
但如果没有,我的 fragment 会正确显示并且我可以在它们之间滑动。 http://imgur.com/bboSd
我不知道为什么会这样。我正在使用最新的 ViewPagerIndicator 库,但我想这可能与我导入它的方式有关?我按照网站上的说明进行操作:从现有源代码在 eclipse 中创建新的 android 项目,导入兼容性库,然后将其添加到我在 android 项目属性中的项目。
任何帮助将不胜感激,我已经坚持了 2 周 :(
代码:
布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<com.viewpagerindicator.TitlePageIndicator
android:id="@+id/titles"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<android.support.v4.view.ViewPager
android:id="@+id/grocery_pager"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
/>
</LinearLayout>
FragmentActivity(来自 ActionBarSherlock):
public class GroceryActivity extends BaseFragmentActivity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_grocerylist);
// Set the pager with an adapter
ViewPager pager = (ViewPager) findViewById(R.id.grocery_pager);
pager.setAdapter(new GroceryViewPagerAdapter(getSupportFragmentManager()));
// Bind the title indicator to the adapter
//When these next two lines are commented out, everything works
TitlePageIndicator titleIndicator = (TitlePageIndicator) findViewById(R.id.titles);
titleIndicator.setViewPager(pager);
}
}
最佳答案
我最终找到了问题:
在我的线性布局中,我没有设置布局的方向。出于一些愚蠢的原因,我认为方向字段与设备的方向有关,而不是布局本身。添加 orientation:vertical 字段使一切正常。
希望这对某人有帮助!
关于android - ViewPagerIndicator 的 TitlePageIndicator 阻止 fragment 显示并导致滑动不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9322988/
我正在使用 Jake Wharton 的 TabPageIndicator我的问题:有没有办法将标签页脚行转换为“标题行”?我正在使用 ViewPager 下方的指示器,在我的选项卡标题顶部显示“选定
我搜索了很多,但找不到这个问题的答案:有什么方法可以在 ViewPager 下面使用 TitlePageIndicator 吗? 我在 .xml 中尝试了相反的顺序,但得到了: 04-24 19:30
我查看了示例,唯一的区别似乎是名称,但是当我将我的应用程序中的所有名称从 TitlePageIndicator 切换到 TabPageIndicator 时,选项卡对齐困惑,页脚下划线消失了. 我错过
我注意到的问题发生在用户滚动到 ViewPager 中的下一个(或上一个)页面时,这会触发 ViewPager 的稳定(确认? ) 到那个页面。这非常有效,除非用户在 ViewPager 仍在稳定时开
我在尝试使用 ViewPagerIndicator (http://viewpagerindicator.com/) 时看到一个非常奇怪的错误。我已将其缩小到属于该库的 TitlePageIndica
我的 View 寻呼机中有 ListView ,并且我使用了 TitlePageIndicator。一切似乎都运行良好,但由于 IndexOutOfBound 异常而随机崩溃。我不确定是什么原因造成的
我正在尝试实现 TitlePageIndicator 和 CirclePageIndicator 来创建如下内容: 这是我的代码: pageAdapter = new MyPageAdapte
在我的应用程序中,我正在使用 Jake Wharton 的 TitlePageIndicator。我想知道我们是否可以将字体设置为 TitlepagerIndicator。 这是xml, 在主要 A
我注意到最新版本的 ViewPagerIndicator 支持 ICS 样式的分隔线,我尝试关注问题和解决方案,但无论我做什么,我都无法让分隔线显示在操作栏上的选项中标题页指示器。我添加了 IcsLa
我是一名优秀的程序员,十分优秀!