[Media TTT] Add a ripple to the undo button.

Fixes: 209793219
Test: manual: verified ripple appears when tapping undo button
Change-Id: Iad4b483cce96a5ae3a9ae55a22bbce2f5c998a23
This commit is contained in:
Caitlin Cassidy
2022-03-15 20:17:52 +00:00
parent 9813318dfd
commit 17384a09fd

View File

@@ -14,9 +14,14 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<shape
<ripple
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android">
<solid android:color="?androidprv:attr/colorAccentPrimary" />
<corners android:radius="24dp" />
</shape>
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
android:color="?android:textColorPrimary">
<item android:id="@android:id/background">
<shape>
<solid android:color="?androidprv:attr/colorAccentPrimary"/>
<corners android:radius="24dp" />
</shape>
</item>
</ripple>