- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用JakeWharton我的横向应用程序上有 ViewPagerIndicator,但我认为我搞乱了布局。 ViewPagerIndicator 不显示。我刚刚开始学习 Android 开发,因此非常感谢您的帮助!
我的猜测是它与我的线性布局有关......它应该是相对的吗?我是否遮盖了寻呼机指示器?我知道,如果我将指示器代码移至 View 寻呼机上方,我会看到指示器,但其他所有内容都是白色的。我的 fragment 的布局是相对布局,其高度和宽度与父级匹配。
我的应用程序是一个带有 fragment 的 Activity。
编辑:我设置了指示器高度来包裹内容,但现在它 float 在屏幕顶部。如何让它下降?
My_Activity.java
public class MyActivity extends FragmentActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my);
ViewPager pager = (ViewPager) findViewById(R.id.viewPager);
MyPagerAdapter mAdapter = new MyPagerAdapter(getSupportFragmentManager());
pager.setAdapter(mAdapter);
CirclePageIndicator circleInd = (CirclePageIndicator) findViewById(R.id.circles);
circleInd.setViewPager(pager);
circleInd.setStrokeColor(0xAA000000);
//circleInd.setCurrentItem(mAdapter.getCount() - 1);
}
private class MyPagerAdapter extends FragmentPagerAdapter {
public MyPagerAdapter(FragmentManager fm) {
super(fm);
}
@Override
public Fragment getItem(int pos) {
switch (pos) {
case 0: return FirstFragment.newInstance("First");
case 1: return SecondFragment.newInstance("Second");
default: return FirstFragment.newInstance("First");
}
}
@Override
public int getCount() {
return 2;
}
}
}
和 XML
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.frontrowqa.myfirstapplication.MyActivity">
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</android.support.v4.view.ViewPager>
<com.viewpagerindicator.CirclePageIndicator
android:id="@+id/circles"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:padding="10dp"
android:layout_gravity="bottom" />
</LinearLayout>
还有我的 fragment
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="20dp">
<EditText
android:id="@+id/PasscodeText"
android:layout_height="wrap_content"
android:inputType="textPersonName"
android:layout_width="fill_parent"
android:hint="Passcode"
android:backgroundTint="@android:color/black" />
<EditText
android:id="@+id/ipAddressText"
android:layout_below="@id/PasscodeText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="IP Address"
android:backgroundTint="@android:color/black" />
<EditText
android:id="@+id/intercomText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/ipAddressText"
android:hint="Intercom Event Number"
android:backgroundTint="@android:color/black"/>
<TextView
android:id="@+id/tvFragFirst"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:textSize="26dp"
android:text="TextView" />
</RelativeLayout>
最佳答案
像这样设置你的 Activity xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<com.viewpagerindicator.CirclePageIndicator
android:id="@+id/circles"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:padding="10dp" />
</LinearLayout>
关于java - ViewPagerIndicator 未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38335569/
当我同步 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 {
我是一名优秀的程序员,十分优秀!