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

Commit 0d98e8ae authored by Flavio Fiszman's avatar Flavio Fiszman Committed by Android (Google) Code Review
Browse files

Merge "Change People Space widget background."

parents 660f7cd8 46ef1fc0
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -15,14 +15,5 @@
  -->
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@android:color/white" />
    <padding
        android:left="1dp"
        android:top="1dp"
        android:right="1dp"
        android:bottom="1dp" />
    <corners
        android:bottomRightRadius="7dp"
        android:bottomLeftRadius="7dp"
        android:topRightRadius="7dp"
        android:topLeftRadius="7dp" />
    <corners android:radius="@dimen/people_space_widget_radius" />
</shape>
 No newline at end of file
+27 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2020 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.
  -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >
    <solid
        android:color="?android:attr/colorControlNormal" />
    <corners android:radius="@dimen/people_space_widget_radius" />
    <padding
        android:left="@dimen/people_space_widget_background_padding"
        android:top="@dimen/people_space_widget_background_padding"
        android:right="@dimen/people_space_widget_background_padding"
        android:bottom="@dimen/people_space_widget_background_padding"/>
</shape>
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
    android:id="@+id/widget_list_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/holo_blue_light"
    android:background="@drawable/people_space_widget_background"
    android:clipChildren="false"
    android:clipToPadding="false"
    android:padding="5dp"
+3 −0
Original line number Diff line number Diff line
@@ -1296,4 +1296,7 @@
    <dimen name="media_output_dialog_header_icon_padding">16dp</dimen>
    <dimen name="media_output_dialog_icon_corner_radius">16dp</dimen>
    <dimen name="media_output_dialog_title_anim_y_delta">12.5dp</dimen>

    <dimen name="people_space_widget_radius">10dp</dimen>
    <dimen name="people_space_widget_background_padding">6dp</dimen>
</resources>