作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在使用 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/
我是一名优秀的程序员,十分优秀!