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

Commit a695d3ce authored by Adrian Roos's avatar Adrian Roos Committed by Android Git Automerger
Browse files

am 03508a46: Merge "Implement HUN visuals: shadows and translucency" into lmp-preview-dev

* commit '03508a4675f4be13551f6b3315439e833327ccc5':
  Implement HUN visuals: shadows and translucency
parents d31c386a 0948925a
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 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 Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
/* apps/common/assets/default/default/skins/StatusBar.xml
**
** 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. 
** 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.
*/
     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.
-->
<com.android.systemui.statusbar.policy.HeadsUpNotificationView
        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_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:background="@drawable/notification_panel_bg"
        />
 No newline at end of file
                style="@style/NotificationsQuickSettings" />

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