diff options
| -rw-r--r-- | packages/CarSystemUI/res/drawable/system_bar_background_pill.xml | 23 | ||||
| -rw-r--r-- | packages/CarSystemUI/res/values/styles.xml | 1 |
2 files changed, 18 insertions, 6 deletions
diff --git a/packages/CarSystemUI/res/drawable/system_bar_background_pill.xml b/packages/CarSystemUI/res/drawable/system_bar_background_pill.xml index 1b12eb404d5e..51d2b9d3e1e0 100644 --- a/packages/CarSystemUI/res/drawable/system_bar_background_pill.xml +++ b/packages/CarSystemUI/res/drawable/system_bar_background_pill.xml @@ -14,9 +14,20 @@ ~ See the License for the specific language governing permissions and ~ limitations under the License. --> - -<shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <solid android:color="@color/system_bar_background_pill_color"/> - <corners android:radius="30dp"/> -</shape>
\ No newline at end of file +<layer-list + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:aapt="http://schemas.android.com/aapt"> + <item> + <aapt:attr name="android:drawable"> + <shape android:shape="rectangle"> + <solid android:color="@color/system_bar_background_pill_color"/> + <corners android:radius="30dp"/> + </shape> + </aapt:attr> + </item> + <item> + <aapt:attr name="android:drawable"> + <ripple android:color="?android:attr/colorControlHighlight"/> + </aapt:attr> + </item> +</layer-list> diff --git a/packages/CarSystemUI/res/values/styles.xml b/packages/CarSystemUI/res/values/styles.xml index f242db0aec09..f5de2fde7b1a 100644 --- a/packages/CarSystemUI/res/values/styles.xml +++ b/packages/CarSystemUI/res/values/styles.xml @@ -49,5 +49,6 @@ <item name="android:padding">@dimen/system_bar_button_padding</item> <item name="android:gravity">center</item> <item name="android:background">?android:attr/selectableItemBackground</item> + <item name="unselectedAlpha">0.56</item> </style> </resources>
\ No newline at end of file |