I have an appCompactActivity with icon tabs. The tabs are part of a TabLayout. I want that the selected tab icon will get whiter.
Edit:
I want to do it programmatically
How can i do that?
I have an appCompactActivity with icon tabs. The tabs are part of a TabLayout. I want that the selected tab icon will get whiter.
Edit:
I want to do it programmatically
How can i do that?
You might have to create a selector for your icon on yout tablayout.
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/icon_pressed"
android:state_pressed="true" />
<item android:drawable="@drawable/icon_selected"
android:state_selected="true" />
<item android:drawable="@drawable/icon_normal" />
Save this xml in your drawable folder and use it with R.drawable.myicon