Skip to content

Commit

Permalink
Improve resume
Browse files Browse the repository at this point in the history
  • Loading branch information
SrMouraSilva committed Feb 25, 2018
1 parent 4256c99 commit e902edf
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package io.github.pedalpi.displayview.resume


class TitleView
6 changes: 6 additions & 0 deletions app/src/main/res/drawable/button_effect_active.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@color/colorButtonActiveFocus"/>
<item android:state_focused="true" android:drawable="@color/colorButtonActivePressed"/>
<item android:drawable="@color/colorButtonActive"/>
</selector>
6 changes: 6 additions & 0 deletions app/src/main/res/drawable/button_effect_not_active.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@color/colorButtonActiveFocus"/>
<item android:state_focused="true" android:drawable="@color/colorButtonActivePressed"/>
<item android:drawable="@color/colorButtonActive"/>
</selector>

0 comments on commit e902edf

Please sign in to comment.