Skip to content
This repository was archived by the owner on May 1, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<ripple
xmlns:android="http://schemas.android.com/apk/res/android"
android:color="#a5a5a5">
<item>
<shape
android:shape="rectangle">
<solid android:color="@android:color/transparent" />
</shape>
</item>
</ripple>
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape
android:shape="rectangle">
<solid android:color="@android:color/transparent" />
</shape>
</item>
<item android:state_pressed="true">
<shape
android:shape="rectangle">
<solid android:color="@android:color/transparent" />
</shape>
</item>
<item android:state_focused="true">
<shape
android:shape="rectangle">
<solid android:color="@android:color/transparent" />
</shape>
</item>
</selector>
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
android:layout_height="match_parent"
android:listSelector="@drawable/mpl__custom_ripple_effect_background"/>

<ImageView
android:id="@+id/abp__shadowView"
Expand Down