-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13265 from Akshaykomar890/trunk
Fix Spinner Ripple Effect in WCMaterialOutlinedSpinnerView.
- Loading branch information
Showing
2 changed files
with
23 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<!-- Background shape or color --> | ||
<item> | ||
<shape android:shape="rectangle"> | ||
<solid android:color="@android:color/transparent" /> | ||
</shape> | ||
</item> | ||
|
||
<!-- Ripple effect --> | ||
<item android:left="@dimen/minor_10" android:top="@dimen/minor_75" android:right="@dimen/minor_10" android:bottom="@dimen/minor_00"> | ||
<ripple android:color="?attr/colorControlHighlight"> | ||
<item android:id="@android:id/mask"> | ||
<shape android:shape="rectangle"> | ||
<solid android:color="?attr/colorAccent" /> | ||
</shape> | ||
</item> | ||
</ripple> | ||
</item> | ||
</layer-list> | ||
|
||
|
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