Files
frameworks_base/packages/SystemUI/res/layout/qs_detail_header.xml
Jason Monk b83d087158 Fix up label in QS detail
Bug: 27601234
Change-Id: Ib21166b84b45118ee1aa574e5a6ea5c73e189490
2016-03-16 13:30:43 -04:00

51 lines
1.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
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.keyguard.AlphaOptimizedLinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingEnd="@dimen/qs_panel_padding"
android:background="@drawable/btn_borderless_rect"
android:gravity="center">
<ImageView
android:id="@*android:id/up"
android:layout_width="56dp"
android:layout_height="56dp"
android:layout_marginEnd="16dp"
android:padding="16dp"
android:clickable="true"
android:background="?android:attr/selectableItemBackground"
android:contentDescription="@*android:string/action_bar_up_description"
android:src="?android:attr/homeAsUpIndicator" />
<TextView
android:id="@android:id/title"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textAppearance="@style/TextAppearance.QS.DetailHeader" />
<Switch
android:id="@android:id/toggle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="false"
android:textAppearance="@style/TextAppearance.QS.DetailHeader" />
</com.android.keyguard.AlphaOptimizedLinearLayout>