我正在使用TabPageIndicator
with ,从这里ViewPager
引用。我的布局 XML 如下:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<com.viewpagerindicator.TabPageIndicator
android:id="@+id/indicator"
android:layout_height="35dp"
android:layout_gravity="center_vertical"
android:layout_width="fill_parent"
android:paddingTop="0dp"
android:paddingBottom="0dp"
android:layout_margin="0dp"
android:background="#69cbd8"
/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
/>
</LinearLayout>
在 中Manifest
,活动定义如下:
<activity
android:name=".modules.results.ResultsLauncher"
android:configChanges="orientation|screenSize"
android:theme="@style/StyledIndicators">
>
<!-- android:label="Titles/With Listener" -->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.jakewharton.android.viewpagerindicator.sample.SAMPLE" />
</intent-filter>
</activity>
如您所见,我使用了自定义样式,StyledIndicators
. 我参考了从 GITHUB 下载的示例,并从这里参考了自定义样式。
现在一切正常。但是标签标题的底部被覆盖了。并在上面留下不必要的空间。我无法显示选项卡的整个标题。我附上了我的屏幕截图。
我希望将标题“按日期”和“按测试”放在上部。但找不到解决办法。