作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试过在选项卡之间添加分隔线,但没有使用任何自定义布局。我已经使用以下方法以编程方式尝试了它:
public static void addTabsDividers(TabLayout tabLayout, @ColorRes int divColorRes,int divWidthDP,int divHeightDP){
View root = tabLayout.getChildAt(0);
if (root instanceof LinearLayout) {
((LinearLayout) root).setShowDividers(LinearLayout.SHOW_DIVIDER_MIDDLE);
GradientDrawable drawable = new GradientDrawable();
drawable.setColor(tabLayout.getContext().getResources().getColor(divColorRes));
drawable.setSize(divWidthDP, divHeightDP);
// ((LinearLayout) root).setDividerPadding(10);
((LinearLayout) root).setDividerDrawable(drawable);
}
}
注意选项卡左侧的奇怪空白,我想删除它!!
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="?actionBarSize">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/tabs"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<FrameLayout
android:id="@+id/fl_main"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</android.support.v4.widget.NestedScrollView>
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
app:tabIndicatorColor="@color/colorPrimary"
app:tabPaddingTop="5dp"
app:tabPaddingBottom="0dp"
app:tabPaddingStart="0dp"
app:tabPaddingEnd="0dp"
app:tabTextColor="@color/md_white_1000"
app:tabSelectedTextColor="@color/md_white_1000"
app:tabTextAppearance="@style/TabTextStyle"
app:tabBackground="@drawable/tab_color_selector"/>
</RelativeLayout>
最佳答案
我看到你回答了我正在使用的同一个问题,你使用的解决方案与我相同,我也遇到了同样的问题!但我发现为分隔线使用自定义可绘制对象 100% 解决了问题,现在我的两个选项卡中间只有一个分隔线。这是我正在使用的可绘制对象:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<size android:width="1dp" />
<solid android:color="@android:color/white" />
</shape>
</item>
<item
android:bottom="16dp"
android:top="12dp">
<shape android:shape="rectangle">
<solid android:color="@color/color_gray" />
<size android:width="1dp" />
</shape>
</item>
让我知道这是否适合您。
public class MyTabLayout extends TabLayout {
public MyTabLayout(Context context) {
super(context);
}
public MyTabLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
public MyTabLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
/**
* Adds vertical dividers between tabs
*/
public void addTabDivider() {
LinearLayout linearLayout = (LinearLayout)getChildAt(0);
linearLayout
.setShowDividers(LinearLayout.SHOW_DIVIDER_MIDDLE);
Drawable drawable = MyApp.getInstance().getDrawable(R.drawable.tab_divider);
linearLayout.setDividerDrawable(drawable);
}
关于android - 以编程方式在 TabLayout 的选项卡之间分隔线 LinearLayout.SHOW_DIVIDER_MIDDLE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49831234/
我试过在选项卡之间添加分隔线,但没有使用任何自定义布局。我已经使用以下方法以编程方式尝试了它: public static void addTabsDividers(TabLayout tabLayo
我是一名优秀的程序员,十分优秀!