如何在选项卡布局中设置选项卡宽度?

2022-09-01 09:35:26

我正在尝试创建一个有两个.当我在小型移动设备上运行该应用程序时,看起来很好,但是当我在其上运行相同的应用程序时,它会显示如下。tab layouttabstab layoutTablet

它在平板电脑上看起来像这样:

enter image description here

我希望每个选项卡都占用整个空间,两端没有任何间隙。我创造了这样的...tab layout

private void drawTabLayout() {
    tabLayout = (TabLayout) findViewById(R.id.tabs);
    tabLayout.addTab(tabLayout.newTab().setText("Imprint") );
    tabLayout.addTab(tabLayout.newTab().setText("Legal"));
    tabLayout.setTabGravity(TabLayout.GRAVITY_FILL);
    tabLayout.setTabMode(TabLayout.MODE_FIXED);
    tabLayout.setSelectedTabIndicatorHeight(10);
    tabLayout.setBackgroundColor(Color.WHITE);
}

我搜索了许多网站,但找不到正确的答案


答案 1

将此代码添加到tab_layout.xml

<android.support.design.widget.TabLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabMaxWidth="0dp"
            app:tabGravity="fill"
            app:tabMode="fixed" />

希望它能为你工作...


答案 2

您可以创建一个选项卡布局,其中每个选项卡都有一个自定义视图,并将该选项卡添加到选项卡布局中,无论您选择什么大小

View customView = LayoutInflater.from(getContext()).inflate(R.layout.tab_text, null); 

addTab(newTab().setCustomView(customView))

推荐