Like putting icon and text in tabs (Sliding Tabs) android?

后端 未结 3 1179
情深已故
情深已故 2021-01-29 01:10

I need to make my application with this appearance (icon and text): https://material-design.storage.googleapis.com/publish/material_v_4/material_ext_publish/0B6Okdz75tqQsbHJuWi0

3条回答
  •  走了就别回头了
    2021-01-29 01:53

    Using the default Tabbed Activity from android studio, just add the following:

    TabLayout tabLayout = (TabLayout) findViewById(R.id.tabs);
    tabLayout.setupWithViewPager(mViewPager);
    
    tabLayout.getTabAt(0).setIcon(R.drawable.image_1);
    tabLayout.getTabAt(1).setIcon(R.drawable.image_2);
    tabLayout.getTabAt(2).setIcon(R.drawable.image_3);
    

提交回复
热议问题