gpt4 book ai didi

android - 以编程方式在 TabLayout 的选项卡之间分隔线 LinearLayout.SHOW_DIVIDER_MIDDLE

转载 作者:行者123 更新时间:2023-11-30 00:01:34 25 4
gpt4 key购买 nike

我试过在选项卡之间添加分隔线,但没有使用任何自定义布局。我已经使用以下方法以编程方式尝试了它:

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);
}
}

但这会在选项卡的左侧增加额外的空间: tab divider image

注意选项卡左侧的奇怪空白,我想删除它!!

标签 xml:

    <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/

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