3
我正在使用服務庫中的TabLayout。我長時間在選項卡上嘗試添加OnLongClickListener。對我來說這是不可能的。我甚至試圖通過使用childView來「破解」它:在android支持TabLayout上添加OnLongClickListener | TabLayout.Tab
View tabLayoutChild = tabLayout.getChildAt(0);
ViewGroup group = (ViewGroup) tabLayoutChild;
group.getChildAt(0).setOnLongClickListener(this);
不起作用,看起來不漂亮。除了我想要實現的longClick之外,它非常方便。
我的代碼
pagerAdapter = new CustomFragmentPagerAdapter(getSupportFragmentManager());
pagerView.setAdapter(pagerAdapter);
tabLayout.setupWithViewPager(pagerView);
的tablayout有一個方法setOnLongClickListener()
,但我可以告訴,它什麼都不做小片段。
如何爲tablayout中的選項卡實現LongClickListener?