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

Commit a0b5d767 authored by Adnan Begovic's avatar Adnan Begovic
Browse files

systemui: Support remote expanded style.

Change-Id: Ia324db41310c61cd0acd83633a9728b7562fd300
parent 12bee1e3
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -18,7 +18,9 @@
             android:layout_width="match_parent"
             android:layout_height="match_parent"
             android:orientation="vertical"
              android:paddingBottom="8dp">
             android:paddingTop="@dimen/detail_exterior_padding"
             android:paddingStart="@dimen/detail_exterior_padding"
             android:paddingEnd="@dimen/detail_exterior_padding">

    <LinearLayout android:layout_height="wrap_content"
                  android:layout_width="match_parent"
+25 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2015 The CyanogenMod 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.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="vertical"
              android:paddingTop="@dimen/detail_exterior_padding"
              android:paddingStart="@dimen/detail_exterior_padding"
              android:paddingEnd="@dimen/detail_exterior_padding">

</LinearLayout>
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/qs_detail_background"
        android:paddingBottom="8dp"
        android:paddingBottom="@dimen/detail_exterior_padding"
        android:orientation="vertical">

    <FrameLayout
+3 −3
Original line number Diff line number Diff line
@@ -18,9 +18,9 @@
<com.android.systemui.qs.QSDetailItems xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingTop="16dp"
    android:paddingStart="16dp"
    android:paddingEnd="16dp">
    android:paddingTop="@dimen/detail_exterior_padding"
    android:paddingStart="@dimen/detail_exterior_padding"
    android:paddingEnd="@dimen/detail_exterior_padding">

    <LinearLayout
        android:id="@android:id/list"
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:gravity="top|center_horizontal"
        android:paddingTop="16dp"
        android:paddingTop="@dimen/detail_exterior_padding"
        android:minHeight="112dp"
        android:clipChildren="false"
        android:clipToPadding="false"
Loading