gpt4 book ai didi

Android TabLayout固定模式但权重不同

转载 作者:行者123 更新时间:2023-11-29 15:06:52 25 4
gpt4 key购买 nike

我有 4 个标签,其中一个的尺寸是其他标签的两倍,所以权重为:20% 40% 20% 20%

但是当我使用 TabLayout(来自 android 设计支持库)将模式设置为 fixed 时,我不得不为所有对象设置相同的权重!这是应用宽度的源代码部分:

private void updateTabViewLayoutParams(LinearLayout.LayoutParams lp) {
if (mMode == MODE_FIXED && mTabGravity == GRAVITY_FILL) {
lp.width = 0;
lp.weight = 1;
} else {
lp.width = LinearLayout.LayoutParams.WRAP_CONTENT;
lp.weight = 0;
}
}

但我需要不同的权重,以适应屏幕宽度。有什么方法可以应用我自己的权重吗?

最佳答案

    //SlidingTabStrip in TabLayout
ViewGroup slidingTabStrip = (ViewGroup)mTablayout.getChildAt(0);
//second tab in SlidingTabStrip
View tab1 = slidingTabStrip.getChildAt(1);
LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) tab1.getLayoutParams();
layoutParams.weight = 2;
tab1.setLayoutParams(layoutParams);

关于Android TabLayout固定模式但权重不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36360473/

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