1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 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    android:orientation="vertical"
19    android:paddingTop="15dp"
20    android:paddingStart="24dp"
21    android:paddingEnd="24dp"
22    android:focusableInTouchMode="false"
23    android:focusable="false"
24    android:importantForAutofill="noExcludeDescendants"
25    android:layout_width="wrap_content"
26    android:layout_height="wrap_content">
27    <TextView
28        android:focusableInTouchMode="false"
29        android:focusable="false"
30        android:inputType="textNoSuggestions"
31        android:layout_width="match_parent"
32        android:layout_height="wrap_content"
33        android:text="@string/bugreport_info_name"/>
34    <EditText
35        android:id="@+id/name"
36        android:nextFocusDown="@+id/title"
37        android:maxLength="30"
38        android:singleLine="true"
39        android:inputType="textNoSuggestions"
40        android:layout_width="match_parent"
41        android:layout_height="wrap_content"/>
42    <TextView
43        android:focusableInTouchMode="false"
44        android:focusable="false"
45        android:layout_width="match_parent"
46        android:layout_height="wrap_content"
47        android:text="@string/bugreport_info_title"/>
48    <EditText
49        android:id="@+id/title"
50        android:nextFocusUp="@+id/name"
51        android:nextFocusDown="@+id/description"
52        android:maxLength="80"
53        android:singleLine="true"
54        android:inputType="textAutoCorrect|textCapSentences"
55        android:layout_width="match_parent"
56        android:layout_height="wrap_content"/>
57    <TextView
58        android:focusableInTouchMode="false"
59        android:focusable="false"
60        android:layout_width="match_parent"
61        android:layout_height="wrap_content"
62        android:editable="false"
63        android:text="@string/bugreport_info_description"/>
64    <EditText
65        android:id="@+id/description"
66        android:nextFocusUp="@+id/title"
67        android:singleLine="false"
68        android:inputType="textMultiLine|textAutoCorrect|textCapSentences"
69        android:layout_width="match_parent"
70        android:layout_height="wrap_content"/>
71</LinearLayout>
72