How to increase icon size of tabs in TabLayout

后端 未结 6 872
刺人心
刺人心 2020-12-05 00:43

I am trying to increase icon size of tabs in my app. Icon sizes are fixed tried out many ways but nothing is working, finally tried the following but no change in size.Pleas

6条回答
  •  有刺的猬
    2020-12-05 01:03

    No need to take any xml view . Create imageview runtime and add image as view :)

        for (int i = 0; i < tabLayout.getTabCount(); i++) {
            ImageView imageView = new ImageView(context);
            imageView.setImageResource(drawableImage);
            tabLayout.getTabAt(i).setCustomView(imageView);
        }
    

    Happy codding

提交回复
热议问题