Files
frameworks_base/packages/SystemUI/res/layout/controls_dialog.xml
Fabian Kozynski 4429ee6d93 Fix redlines and strings in Controls dialog
Also, make sure that it appears on top of the app

Fixes: 155205745
Test: manual
Change-Id: I56ebae4ef6bdf1c89850a4ad70be05b37e3cd0cb
2020-05-04 12:44:41 -04:00

32 lines
1.2 KiB
XML

<?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.
-->
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<include
android:id="@+id/control"
layout="@layout/controls_base_item"
android:layout_width="@dimen/controls_dialog_control_width"
android:layout_height="@dimen/control_height"
android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/controls_dialog_padding"
android:layout_marginBottom="@dimen/controls_dialog_padding"
/>
</FrameLayout>