gpt4 book ai didi

android - 有没有办法改变 TabPageIndicator 的宽度(作者 Jake Wharton)?

转载 作者:太空狗 更新时间:2023-10-29 13:32:18 27 4
gpt4 key购买 nike

我正在使用 Jake Wharton 的 viewpager 指示器,我想将其宽度更改为特定值。可以在示例中找到的常见 xml 文件是:

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@drawable/background" >

<com.viewpagerindicator.TabPageIndicator
android:id="@+id/indicator"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>

<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" />

</LinearLayout>

TabPageIndicator 的宽度现在是 fill_parent,当我将它更改为特定值时,整个事情开始表现得很奇怪而且不好。我想将图像放在 TabPageindicator 所在的同一行中,但我不希望它成为其中的一部分。这可能吗?

最佳答案

为什么不把它放在带填充的 LinearLayout 中?

    <LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingRight="10dp">

<com.viewpagerindicator.TabPageIndicator
android:id="@+id/indicator"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>

关于android - 有没有办法改变 TabPageIndicator 的宽度(作者 Jake Wharton)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14247019/

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