We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if I had 2 drawables:
plugin would generate selector
<selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true" item android:state_focused="true" android:drawable="@drawable/btn_bar_bottom_focused_pressed"/> <item android:drawable="@drawable/btn_bar_bottom_normal"/> </selector>
but that won't work since view isn't pressed and focused at the same time. Instead I would expect something like:
<selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true" android:drawable="@drawable/btn_bar_bottom_focused_pressed"/> <item android:state_focused="true" android:drawable="@drawable/btn_bar_bottom_focused_pressed"/> <item android:drawable="@drawable/btn_bar_bottom_normal"/> </selector>
The text was updated successfully, but these errors were encountered:
same
Sorry, something went wrong.
No branches or pull requests
if I had 2 drawables:
plugin would generate selector
but that won't work since view isn't pressed and focused at the same time. Instead I would expect something like:
The text was updated successfully, but these errors were encountered: