-
Notifications
You must be signed in to change notification settings - Fork 533
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed selected edit text border (#3184)
Co-authored-by: Rajat Talesra <talesra@google.com>
- Loading branch information
Showing
3 changed files
with
11 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:drawable="@drawable/edit_text_background_shadow" android:state_focused="true" /> | ||
<item android:drawable="@drawable/edit_text_background_shadow" android:state_pressed="true" /> | ||
<item android:drawable="@drawable/edit_text_background_border_blue" android:state_focused="true" /> | ||
<item android:drawable="@drawable/edit_text_background_border_blue" android:state_pressed="true" /> | ||
<item android:drawable="@drawable/edit_text_background_border" /> | ||
</selector> |
9 changes: 9 additions & 0 deletions
9
app/src/main/res/drawable/edit_text_background_border_blue.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="rectangle"> | ||
<corners android:radius="4dp" /> | ||
<solid android:color="@color/white" /> | ||
<stroke | ||
android:width="2dp" | ||
android:color="@color/oppiaDarkBlue" /> | ||
</shape> |
100 changes: 0 additions & 100 deletions
100
app/src/main/res/drawable/edit_text_background_shadow.xml
This file was deleted.
Oops, something went wrong.