apkfuckery/com.discord/res/drawable/design_bottom_navigation_item_background.xml

14 lines
411 B
XML
Raw Normal View History

2019-07-24 11:27:29 +00:00
<?xml version="1.0" encoding="utf-8"?>
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape android:shape="rectangle">
<solid android:color="#ffff0000" />
</shape>
</item>
<item>
<shape android:shape="rectangle">
<solid android:color="#ffffffff" />
</shape>
</item>
</selector>