我使用tablayout创建了30个可滚动的标签。
因此屏幕上可以看到前三个标签,其余部分是不可见的,可以使用轻扫手势滚动。
问题是当我以编程方式选择最后一个选项卡但它不可见时(选项卡布局不会滚动到最后一个选项卡)。
如何让tablayout滚动到最后一个标签?
答案 0 :(得分:42)
我找到了解决方案。
首先,我找到了tablayout的宽度并将其x位置滚动到宽度,然后调用最后一个标签的select()方法。
它运作正常。
以下是代码。
mTabLayout.setScrollX(mTabLayout.getWidth());
mTabLayout.getTabAt(lastTabIndex).select();
<强>更新强>:
如果以上不起作用,您也可以使用以下代码,它也可以正常工作。
new Handler().postDelayed(
new Runnable() {
@Override public void run() {
mTabLayout.getTabAt(TAB_NUMBER).select();
}
}, 100);
答案 1 :(得分:5)
我找到了这个解决方案:
TabLayout tabLayout = activity.getTabLayout();
tabLayout.setSmoothScrollingEnabled(true);
tabLayout.setScrollPosition(targetChannelPosition, 0f, true);
此外,如果您收到此错误:“只有创建视图层次结构的原始线程才能触及其视图。”,您可以使用此代码,以便在Ui线程上运行:
// find a way to get the activity containing the tab layout
TabLayout tabLayout = activity.getTabLayout();
activity.runOnUiThread(new Runnable()
{
@Override
public void run()
{
TabLayout.Tab tab = tabLayout.getTabAt(targetChannelPosition);
tab.select();
}
});
答案 2 :(得分:4)
在自定义tablayout中编写此方法(您自己的布局扩展了tablayout)。因此,将来您可以在需要实例化代码重复时使用此方法
public void selectTabAt(int tabIndex) {
if (tabIndex >= 0 && tabIndex < getTabCount() && getSelectedTabPosition() != tabIndex) {
final Tab currentTab = getTabAt(tabIndex);
if (currentTab != null) {
this.post(new Runnable() {
@Override
public void run() {
currentTab.select();
}
});
}
}
}
如果您不想使用CustomLayout。你可以这样做
final Tab currentTab = mTabLayout.getTabAt(tabIndex);
if(currentTab != null){
mTabLayout.post(new Runnable() {
@Override
public void run() {
currentTab.select();
}
});
}
答案 3 :(得分:2)
上面的答案是行不通的,因为首先如同agirardello提到你不应该使用mTabLayout.getWidth()
,因为它不会返回我们需要的东西(这是你要滚动到的孩子的位置)和更新由于TabLayout中的错误(报告here),解决方案并不总是有效,但解决方法很简单。
tabLayout上的标签不是TabLayout的直接子项,因此我们需要使用
更深层次((ViewGroup) mTabLayout.getChildAt(0)).getChildAt(YOUR_DESIRED_TAB_INDEX).getRight()
tabLayout的唯一子项是TabLayout.SlidingTabStrip
,它也是ViewGroup
,getRight()
将为我们提供所需标签视图的最正确位置。因此滚动到那个位置将给我们想要的东西。这是一个完整的代码:
int right = ((ViewGroup) mTabLayout.getChildAt(0)).getChildAt(4).getRight();
mTabLayout.scrollTo(right,0);
mTabLayout.getTabAt(4).select();
注意:确保在布局被淹没后调用这些方法(如onResume而不是onCreate)
希望这有帮助。
答案 4 :(得分:1)
要选择最后一个标签,请使用 tabLayout.getTabAt(X)。选择();其中X是最后一个标签索引
答案 5 :(得分:1)
您是否在TabLayout之前调用tab.select()
并且其子项实际上已经被测量和绘制了?如果是这样,您的TabLayout将无法使用tab.select()
(或Kayvan N对scrollTo()
的建议)对选择进行动画处理。使用处理程序可能会起作用,但这不是一个理想的解决方案。
如果布局尚未布局,则ViewTreeObserver
将允许您在布局过程完成后移动到所选标签。
private void scrollToTabAfterLayout(final int tabIndex) {
if (getView() != null) {
final ViewTreeObserver observer = mTabLayout.getViewTreeObserver();
if (observer.isAlive()) {
observer.dispatchOnGlobalLayout(); // In case a previous call is waiting when this call is made
observer.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
observer.removeOnGlobalLayoutListener(this);
} else {
//noinspection deprecation
observer.removeGlobalOnLayoutListener(this);
}
mTabLayout.getTabAt(tabIndex).select();
}
});
}
}
}
如果您有任何建议,请发表评论。
答案 6 :(得分:1)
new Handler().postDelayed(
new Runnable() {
@Override public void run() {
mTabLayout.getTabAt(TAB_NUMBER).select();
}
}, 100);
答案 7 :(得分:0)
ca.aStruct().i = 8 //Compile error. Cannot assign to property: function call returns immutable value.
还应设置标签的位置
答案 8 :(得分:0)
这个解决方案对我有用。我的情况有点不同;在我的例子中,我使用带有ViewPager的TabLayout并添加更多视图并调用notifyDataSetChange()。
解决方案是在TabLayout的观察者上设置回调,并在子项实际添加到TabLayout时滚动。这是我的例子:
/**
Keep in mind this is how I set my TabLayout up...
PagerAdapter pagerAdapter = new PagerAdapter(...);
ViewPager pager = (ViewPager)findViewById(...);
pager.setAdapter(pagerAdapter);
TabLayout tabLayout = (TabLayout)findViewById(...);
tabLayout.setupWithViewPager(pager);
*/
public void loadTabs(String[] topics) {
animateTabsOpen(); // Irrelevant to solution
// Removes fragments from ViewPager
pagerAdapter.clear();
// Adds new fragments to ViewPager
for (String t : topics)
pagerAdapter.append(t, new TestFragment());
// Since we need observer callback to still animate tabs when we
// scroll, it is essential to keep track of the state. Declare this
// as a global variable
scrollToFirst = true;
// Alerts ViewPager data has been changed
pagerAdapter.notifyOnDataSetChanged();
// Scroll to the beginning (or any position you need) in TabLayout
// using its observer callbacks
tabs.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
/**
We use onGlobalLayout() callback because anytime a tab
is added or removed the TabLayout triggers this; therefore,
we use it to scroll to the desired position we want. In my
case I wanted to scroll to the beginning position, but this
can easily be modified to scroll to any position.
*/
if (scrollToFirst) {
tabs.getTabAt(0).select();
tabs.scrollTo(0, 0);
scrollToFirst = false;
}
}
});
}
如果你需要它,我的代码是PagerAdapter lol:
public class PagerAdapter extends FragmentStatePagerAdapter {
private List<Fragment> fragments;
private List<String> titles;
public PagerAdapter(FragmentManager fm) {
super(fm);
this.fragments = new ArrayList<>();
this.titles = new ArrayList<>();
}
/**
* Adds an adapter item (title and fragment) and
* doesn't notify that data has changed.
*
* NOTE: Remember to call notifyDataSetChanged()!
* @param title Fragment title
* @param frag Fragment
* @return This
*/
public PagerAdapter append(String title, Fragment frag) {
this.titles.add(title);
this.fragments.add(frag);
return this;
}
/**
* Clears all adapter items and doesn't notify that data
* has changed.
*
* NOTE: Rememeber to call notifyDataSetChanged()!
* @return This
*/
public PagerAdapter clear() {
this.titles.clear();
this.fragments.clear();
return this;
}
@Override
public Fragment getItem(int position) {
return fragments.get(position);
}
@Override
public CharSequence getPageTitle(int position) {
return titles.get(position);
}
@Override
public int getCount() {
return fragments.size();
}
@Override
public int getItemPosition(Object object) {
int position = fragments.indexOf(object);
return (position >= 0) ? position : POSITION_NONE;
}
}
答案 9 :(得分:0)
我想知道这个答案是否具有相关性,因为它来得很晚。我实际上使用Xamarin在C#中实现了它。
tabs.GetChildAt(0).Selected = true;
viewPager.SetCurrentItem(0, true);
答案 10 :(得分:0)
如果您的TabLayout
与ViewPager
一起使用,这很常见,只需在您的活动的onCreate()
方法中添加以下内容:
tabLayout.addOnTabSelectedListener(new TabLayout.ViewPagerOnTabSelectedListener(viewPager);
viewPager.addOnPageChangeListener(new TabLayout.TabLayoutOnPageChangeListener(tabLayout);
您的某些标签未显示表明tabMode属性设置为app:tabMode="scrollable"
。
答案 11 :(得分:0)
tab = tabLayout.getSelectedTabPosition();
tab++;
TabLayout.Tab tabs = tabLayout.getTabAt(tab);
if (tabs != null) {
tabs.select();
}
else {
tabLayout.getTabAt(0).select();
}
如果您想在点击事件中使用下一个标签,请完全使用此代码
答案 12 :(得分:0)
下面的代码段对我有用
class TriggerOnceListener(private val v: View, private val block: () -> Unit) : ViewTreeObserver.OnPreDrawListener {
override fun onPreDraw(): Boolean {
block()
v.viewTreeObserver.removeOnPreDrawListener(this)
return true
}
}
fun onCreate() {
val position = ***The tab position you want to scroll to, 29 for your case here***
tabLayout.let { it.viewTreeObserver.addOnPreDrawListener(TriggerOnceListener(it)
{ it.setScrollPosition(position, 0f, true) } ) }
}
我深入研究Tab.select(),发现Android使用Tablayout.setScrollPosition()进行滚动。而且在onCreate()中尚未测量这些小部件,您需要将调用推迟到布局完成为止。