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

Commit de61fd78 authored by Adrian Roos's avatar Adrian Roos
Browse files

Implement HUN visuals: shadows and translucency

Bug: 15106201
Change-Id: I718e3d36355d0f58abc3daadb8c6a9d554f29bec
parent b13d7548
Loading
Loading
Loading
Loading
−504 B
Loading image diff...
−1.36 KiB
Loading image diff...
−1.18 KiB
Loading image diff...
+0 −30
Original line number Original line Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
** Copyright 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.
*/
-->
<com.android.systemui.statusbar.policy.HeadsUpNotificationView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    >
    <FrameLayout
        android:id="@+id/content_holder"
        android:layout_height="wrap_content"
        android:layout_width="@dimen/notification_panel_width"
        android:background="@drawable/heads_up_window_bg"
        />
</com.android.systemui.statusbar.policy.HeadsUpNotificationView>
+25 −21
Original line number Original line Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<!--
<!--
/* apps/common/assets/default/default/skins/StatusBar.xml
     Copyright (C) 2014 The Android Open Source Project
**

** Copyright 2006, 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.
** Licensed under the Apache License, Version 2.0 (the "License"); 
     You may obtain a copy of the License at
** 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
**

**     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,
** Unless required by applicable law or agreed to in writing, software 
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** distributed under the License is distributed on an "AS IS" BASIS, 
     See the License for the specific language governing permissions and
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     limitations under the License.
** See the License for the specific language governing permissions and 
** limitations under the License.
*/
-->
-->
<com.android.systemui.statusbar.policy.HeadsUpNotificationView
<com.android.systemui.statusbar.policy.HeadsUpNotificationView
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_height="match_parent"
        android:layout_width="match_parent">

        <FrameLayout
                android:layout_height="wrap_content"
                android:layout_height="wrap_content"
        android:layout_width="match_parent"
                android:layout_marginStart="@dimen/notification_side_padding"
                android:layout_marginEnd="@dimen/notification_side_padding"
                android:elevation="16dp"
                android:id="@+id/content_holder"
                android:id="@+id/content_holder"
        android:background="@drawable/notification_panel_bg"
                style="@style/NotificationsQuickSettings" />
        />

 No newline at end of file
</com.android.systemui.statusbar.policy.HeadsUpNotificationView>
 No newline at end of file
Loading