12.hot to maket the tab can show the icon or page
like this:
see :http://youtengyu-blog.logdown.com/posts/200432-android-establishing-links-with-styles-in-a-textview
TabLayout tabLayout = (TabLayout) findViewById(R.id.tabs);
tabLayout.setupWithViewPager(mViewPager);
tabLayout.getTabAt(0).setIcon(R.mipmap.ic_launcher);
|