我希望获得标签布局中第二个标签的视图。
不是ViewPager中的Fragment视图。
我正在使用TakuSemba的Spotlight Library。
我希望聚光灯到第二个标签。
但是我无法在Tablayout中获得第二个标签的视图。
如何获得标签视图?
编辑:
TextView tab_mypage= (TextView) LayoutInflater.from(this).inflate(R.layout.tab_item, null);
tab_mypage.setText(R.string.tab_menu_mypage);
tab_mypage.setTextColor(ContextCompat.getColor(this, R.color.font_color_1));
Drawable drawable_mypage = getResources().getDrawable(R.drawable.ic_mypage_24);
DrawableCompat.setTint(drawable_mypage, ContextCompat.getColor(this, R.color.font_color_1));
tab_mypage.setCompoundDrawablesWithIntrinsicBounds(null, drawable_mypage, null, null);
tabLayout.getTabAt(1).setCustomView(tab_mypage);
答案 0 :(得分:0)
你可以这样。
tabLayout.getTabAt(0).getCustomView()