我有这个自定义选项卡小部件.. 在我自定义它之前,默认情况下我在每个选项卡之间都有一个自定义分隔符..
尽管我有自定义背景,有没有办法让它仍然可见?
这是我的 XML:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/footer_overbg" android:state_pressed="true"/>
<item android:drawable="@drawable/footer_overbg" android:state_focused="true"/>
<item android:drawable="@drawable/footer_overbg" android:state_selected="true"/>
<item android:drawable="@drawable/footer_bg"/>
</selector>