Android - 仅显示所选标签

时间:2018-04-07 13:51:49

标签: android android-layout tabs center spacing

我正在尝试使用像CNN应用程序一样的标签布局,其中标签位于中心,只显示之前和之后的标签,每个标签都显示为显示文本的一半,如下所示: cnn tabs

由于link

等SO帖子,我设法始终将所选标签置于中心位置

目前该应用看起来像my tabs

但是我无法弄清楚如何在中心选项卡之前和之后分隔(和裁剪)选项卡。

TabLayout_tabPadding属性似乎不起作用,并且需要考虑不同的屏幕尺寸和设备方向。

我的tablayout类是:

public class CenteringTabLayout extends TabLayout {
private Typeface mTypeface;

public CenteringTabLayout(Context context) {
    super(context);
}

public CenteringTabLayout(Context context, AttributeSet attrs) {
    super(context, attrs);
}

public CenteringTabLayout(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
}

@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
    super.onLayout(changed, l, t, r, b);
    View firstTab = ((ViewGroup) getChildAt(0)).getChildAt(0);
    View lastTab = ((ViewGroup) getChildAt(0)).getChildAt(((ViewGroup) getChildAt(0)).getChildCount() - 1);

    if(firstTab!=null)
        ViewCompat.setPaddingRelative(getChildAt(0), (getWidth() / 2) - (firstTab.getWidth() / 2), 0, (getWidth() / 2) - (lastTab.getWidth() / 2), 0);
}

@Override
public void addOnTabSelectedListener(@NonNull OnTabSelectedListener listener) {
    super.addOnTabSelectedListener(listener);
}

@Override
public void addTab(@NonNull Tab tab) {
    super.addTab(tab);
    ViewGroup mainView = (ViewGroup) getChildAt(0);
    ViewGroup tabView = (ViewGroup) mainView.getChildAt(tab.getPosition());

    int tabChildCount = tabView.getChildCount();
    for (int i = 0; i < tabChildCount; i++) {
        View tabViewChild = tabView.getChildAt(i);
        if (tabViewChild instanceof TextView) {
            ((TextView) tabViewChild).setTypeface(mTypeface, Typeface.BOLD);
        }
    }
}

我正在使用以下依赖项

implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:design:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:support-v4:26.1.0'

我对所有这些都有点新意,所以非常感谢任何帮助。

0 个答案:

没有答案