Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cece8599 authored by Tyler Gunn's avatar Tyler Gunn Committed by Android (Google) Code Review
Browse files

Merge "Adding missing touch feedback ripples for swap and hold conference...

Merge "Adding missing touch feedback ripples for swap and hold conference buttons." into lmp-mr1-dev
parents f7f7a4f9 85043efb
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
<!--
  ~ Copyright (C) 2014 The Android Open Source Project
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License");
  ~ you may not use this file except in compliance with the License.
  ~ You may obtain a copy of the License at
  ~
  ~      http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License
  -->

<ripple xmlns:android="http://schemas.android.com/apk/res/android"
        android:color="@color/ripple_light">
    <!-- Constrain the ripple to a rectangular area -->
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@color/background_dialer_white" />
        </shape>
    </item>
</ripple>
 No newline at end of file
+4 −2
Original line number Diff line number Diff line
@@ -97,7 +97,8 @@
        android:scaleType="center"
        android:contentDescription="@string/goPrivate"
        android:tint="@color/conference_call_manager_icon_color"
        android:background="?android:attr/selectableItemBackgroundBorderless" />
        android:background="@drawable/conference_ripple"
        android:clickable="true" />

    <!-- "Disconnect" button which terminates the connection with this caller. -->
    <ImageButton
@@ -109,6 +110,7 @@
        android:scaleType="center"
        android:contentDescription="@string/onscreenEndCallText"
        android:tint="@color/conference_call_manager_icon_color"
        android:background="?android:attr/selectableItemBackgroundBorderless" />
        android:background="@drawable/conference_ripple"
        android:clickable="true" />

</LinearLayout>  <!-- End of single list element -->
+3 −0
Original line number Diff line number Diff line
@@ -103,4 +103,7 @@
        <item>#AD1457</item>
        <item>#B93221</item>
    </array>

    <!-- Ripple color used over light backgrounds. -->
    <color name="ripple_light">#40000000</color>
</resources>