Align Icons in Tab Layout To The Left

后端 未结 6 1459
被撕碎了的回忆
被撕碎了的回忆 2020-12-18 00:44

Hello I have created a tab layout in my activity. This is the main .xml file:




        
6条回答
  •  隐瞒了意图╮
    2020-12-18 01:24

    Use a custom view:

    TextView newTab = (TextView) LayoutInflater.from(this).inflate(R.layout.custom_tab, null);
    newTab.setText("tab1"); //tab label txt
    newTab.setCompoundDrawablesWithIntrinsicBounds(your_drawable_icon_here, 0, 0, 0);
    tabLayout.getTabAt(tab_index_here_).setCustomView(newTab);
    

提交回复
热议问题