我跟着this tutorial。我做了一个简单的更改,在屏幕底部显示TabLayout。
activity_main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v4.view.ViewPager
android:id="@+id/viewpager_landing"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1"
android:background="@android:color/white" />
<android.support.design.widget.TabLayout
android:id="@+id/sliding_tabs_landing"
style="@style/MyCustomTabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="fixed" />
</LinearLayout>
问题: -
TabIndicator
显示在屏幕底部工作正常,现在我想在标签顶部而不是底部显示TabIndicator
。
使用自定义布局我们可以按照教程中的说明进行操作,但是有任何xml属性会在顶部显示TabIndicator
吗?
答案 0 :(得分:1)
将此行添加到XML的TabLayout中
app:tabIndicatorGravity="top"
答案 1 :(得分:0)
这对我有用:
LinearLayout tabs = ((LinearLayout) tabLayout.getChildAt(0));
for (int position = 0; position < tabs.getChildCount(); position++) {
LinearLayout item = ((LinearLayout) tabs.getChildAt(position));
item.setRotationX(180);
}