blob: ee5315ad782fa05972b79eb92f12ebe7cd803b20 [file] [log] [blame]
Matt Pietal68456a12020-02-11 14:06:55 -05001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2020 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17
Matt Pietaldc78c842020-03-30 08:09:18 -040018<LinearLayout
Matt Pietal68456a12020-02-11 14:06:55 -050019 xmlns:android="http://schemas.android.com/apk/res/android"
Matt Pietaldc78c842020-03-30 08:09:18 -040020 android:id="@+id/control_detail_root"
Matt Pietal68456a12020-02-11 14:06:55 -050021 android:layout_width="match_parent"
Matt Pietaldc78c842020-03-30 08:09:18 -040022 android:layout_height="match_parent"
23 android:layout_marginTop="@dimen/controls_activity_view_top_offset"
24 android:orientation="vertical">
25 <LinearLayout
26 android:layout_width="match_parent"
27 android:layout_height="wrap_content"
28 android:orientation="horizontal"
Matt Pietal29e277d2020-04-30 13:57:26 -040029 android:layout_marginBottom="4dp">
Matt Pietaldc78c842020-03-30 08:09:18 -040030 <ImageView
31 android:id="@+id/control_detail_close"
32 android:contentDescription="@string/accessibility_desc_close"
33 android:src="@drawable/ic_close"
34 android:background="?android:attr/selectableItemBackgroundBorderless"
35 android:tint="@color/control_primary_text"
36 android:layout_width="48dp"
37 android:layout_height="48dp"
38 android:padding="12dp" />
39 <Space
40 android:layout_width="0dp"
41 android:layout_weight="1"
42 android:layout_height="1dp" />
43 <ImageView
44 android:id="@+id/control_detail_open_in_app"
Matt Pietalf2d5c4e2020-06-05 12:03:46 -040045 android:contentDescription="@string/controls_open_app"
Matt Pietaldc78c842020-03-30 08:09:18 -040046 android:src="@drawable/ic_open_in_new"
47 android:background="?android:attr/selectableItemBackgroundBorderless"
48 android:tint="@color/control_primary_text"
49 android:layout_width="48dp"
50 android:layout_height="48dp"
51 android:padding="12dp" />
52 </LinearLayout>
53
Matt Pietal6b4b65c2020-04-22 14:16:53 -040054 <FrameLayout
55 android:id="@+id/controls_activity_view"
Matt Pietaldc78c842020-03-30 08:09:18 -040056 android:layout_width="match_parent"
Matt Pietal6b4b65c2020-04-22 14:16:53 -040057 android:layout_height="0dp"
58 android:layout_weight="1"
Matt Pietal29e277d2020-04-30 13:57:26 -040059 android:background="@android:color/black"
Matt Pietal6b4b65c2020-04-22 14:16:53 -040060 android:orientation="vertical" />
Matt Pietaldc78c842020-03-30 08:09:18 -040061</LinearLayout>
Matt Pietal68456a12020-02-11 14:06:55 -050062