How to set Tab View Indicator background color in Android

后端 未结 4 1985
我在风中等你
我在风中等你 2021-01-06 05:41

How to Change color on click tab Host. i can change image but color are not change.

public class MainActivity extends Activity {
    @Override
    protected          


        
4条回答
  •  日久生厌
    2021-01-06 05:57

    //set background colors for tabs

       for (int i = 1; i <= 3; i++) {
        tabHost.getTabWidget().getChildTabViewAt(i).setBackgroundColor(getResources().getColor(R.color.gradient));
    
           }
    

提交回复
热议问题