gpt4 book ai didi

Android 实现一个类似于主屏幕上的页面计数器

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:06:28 25 4
gpt4 key购买 nike

有没有人知道如何像主屏幕上那样设置页面/浏览量计数器(小点)的示例?

像这个例子:

enter image description here

谢谢

最佳答案

PagerTitleStrip是您使用 ViewPager 来指示您所在的页面。它是您添加到 XML 中的东西。

布局 XML:

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center" >

<android.support.v4.view.PagerTitleStrip
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top" />
</android.support.v4.view.ViewPager>

</LinearLayout>

在您的 PagerAdapter 中:

@Override
public CharSequence getPageTitle (int position) {
return "Your static title";
}

然而,PagerTitleStrip 不是很可定制,但是 ViewPagerIndicator非常可定制,包括您正在寻找的虚线指示器。您需要为其设置主题以在您的 OP 中重新创建图片。

圆形指示器 ViewPagerIndicator:

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.viewpagerindicator.sample"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
/>
<com.viewpagerindicator.CirclePageIndicator
android:id="@+id/indicator"
android:padding="10dip"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
/>

</LinearLayout>

然后在你的代码中:

CirclePageIndicator mIndicator = (CirclePageIndicator)findViewById(R.id.indicator);
mIndicator.setViewPager(mPager);

ViewPagerExtensions是另一个开源库,可为您可能感兴趣的 ViewPager 提供自定义 View 。

关于Android 实现一个类似于主屏幕上的页面计数器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10008309/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com