1<?xml version="1.0" encoding="utf-8"?>
2<!--
3     Copyright (C) 2019 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<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18    android:layout_width="match_parent"
19    android:layout_height="wrap_content"
20    android:orientation="horizontal"
21    android:padding="10dp">
22
23    <LinearLayout
24        android:layout_width="wrap_content"
25        android:layout_height="wrap_content"
26        android:orientation="vertical">
27
28        <TextView
29            android:id="@+id/bug_info_row_title"
30            android:layout_width="wrap_content"
31            android:layout_height="wrap_content"
32            android:layout_gravity="left"
33            style="@style/TextAppearance.BugReportUi.Title" />
34
35        <LinearLayout
36            android:layout_width="wrap_content"
37            android:layout_height="wrap_content"
38            android:orientation="horizontal">
39            <TextView
40                android:layout_width="wrap_content"
41                android:layout_height="wrap_content"
42                android:layout_marginRight="@dimen/bug_report_horizontal_layout_children_margin"
43                android:text="@string/bugreport_info_status"
44                style="@style/TextAppearance.BugReportUi.Body" />
45            <TextView
46                android:id="@+id/bug_info_row_status"
47                android:layout_width="wrap_content"
48                android:layout_height="wrap_content"
49                style="@style/TextAppearance.BugReportUi.Body" />
50        </LinearLayout>
51
52        <TextView
53            android:id="@+id/bug_info_row_status_message"
54            android:layout_width="wrap_content"
55            android:layout_height="wrap_content"
56            android:visibility="gone"
57            style="@style/TextAppearance.BugReportUi.Body" />
58
59        <TextView
60            android:id="@+id/bug_info_row_expiration_notice"
61            android:layout_width="wrap_content"
62            android:layout_height="wrap_content"
63            android:visibility="gone"
64            android:text="@string/bugreport_info_expires_soon_notice"
65            android:textSize="@dimen/bug_report_default_text_size" />
66
67        <LinearLayout
68            android:layout_width="wrap_content"
69            android:layout_height="wrap_content"
70            android:orientation="horizontal">
71            <Button
72                android:id="@+id/bug_info_add_audio_button"
73                android:layout_width="wrap_content"
74                android:layout_height="wrap_content"
75                android:layout_marginTop="@dimen/bug_report_user_action_button_padding"
76                android:layout_marginRight="@dimen/bug_report_horizontal_layout_children_margin"
77                android:visibility="gone"
78                android:text="@string/bugreport_add_audio_button_text"
79                style="@style/Widget.BugReportUi.InfoActionButton" />
80            <Button
81                android:id="@+id/bug_info_upload_button"
82                android:layout_width="wrap_content"
83                android:layout_height="wrap_content"
84                android:layout_marginTop="@dimen/bug_report_user_action_button_padding"
85                android:layout_marginRight="@dimen/bug_report_horizontal_layout_children_margin"
86                android:visibility="gone"
87                android:text="@string/bugreport_upload_button_text"
88                style="@style/Widget.BugReportUi.InfoActionButton" />
89            <Button
90                android:id="@+id/bug_info_move_button"
91                android:layout_width="wrap_content"
92                android:layout_height="wrap_content"
93                android:layout_marginTop="@dimen/bug_report_user_action_button_padding"
94                android:visibility="gone"
95                android:text="@string/bugreport_move_button_text"
96                style="@style/Widget.BugReportUi.InfoActionButton" />
97        </LinearLayout>
98    </LinearLayout>
99
100</LinearLayout>
101