1<?xml version="1.0" encoding="utf-8"?><!--
2  ~ Copyright (C) 2024 The Android Open Source Project
3  ~
4  ~ Licensed under the Apache License, Version 2.0 (the "License");
5  ~ you may not use this file except in compliance with the License.
6  ~ You may obtain a copy of the License at
7  ~
8  ~      http://www.apache.org/licenses/LICENSE-2.0
9  ~
10  ~ Unless required by applicable law or agreed to in writing, software
11  ~ distributed under the License is distributed on an "AS IS" BASIS,
12  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  ~ See the License for the specific language governing permissions and
14  ~ limitations under the License.
15  -->
16
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18    xmlns:tools="http://schemas.android.com/tools"
19    android:layout_width="match_parent"
20    android:layout_height="match_parent"
21    android:baselineAligned="false"
22    android:clipChildren="false"
23    android:clipToPadding="false"
24    android:orientation="vertical"
25    android:paddingBottom="20dp"
26    android:paddingEnd="30dp"
27    android:paddingStart="30dp"
28    android:paddingTop="30dp"
29    android:weightSum="1"
30    tools:ignore="Overdraw">
31
32    <LinearLayout
33        android:layout_width="wrap_content"
34        android:layout_height="wrap_content"
35        android:orientation="vertical"
36        android:textStyle="bold">
37
38        <TextView
39            android:id="@+id/feedbackViewLogsDialogTitle"
40            android:layout_width="match_parent"
41            android:layout_height="wrap_content"
42            android:text="@string/feedback_view_logs_dialog_title"
43            android:textSize="@dimen/text_size_h2" />
44
45        <TextView
46            android:id="@+id/feedbackViewLogsDialogBody"
47            android:layout_width="match_parent"
48            android:layout_height="wrap_content"
49            android:layout_marginTop="20dp"
50            android:text="@string/feedback_view_logs_dialog_body"
51            android:textSize="@dimen/text_size_h4" />
52    </LinearLayout>
53
54    <LinearLayout
55        android:layout_width="match_parent"
56        android:layout_height="0dp"
57        android:layout_marginTop="30dp"
58        android:layout_weight="1"
59        android:background="@color/google_screen_black_40">
60
61        <androidx.recyclerview.widget.RecyclerView
62            android:id="@+id/feedbackViewLogsDialogContent"
63            android:layout_width="match_parent"
64            android:layout_height="wrap_content"
65            android:padding="10dp"
66            android:scrollbars="vertical" />
67
68    </LinearLayout>
69
70    <LinearLayout
71        android:layout_width="match_parent"
72        android:layout_height="wrap_content">
73
74        <TextView
75            android:id="@+id/feedbackViewLogsDialogBackButton"
76            android:layout_width="match_parent"
77            android:layout_height="wrap_content"
78            android:layout_marginTop="30dp"
79            android:text="@string/annotated_back_indicator_string"
80            android:textSize="@dimen/text_size_h4" />
81    </LinearLayout>
82
83
84</LinearLayout>