blob: b6b8d6bcf2b2b49675da9643cdc70644b8f02cc3 [file] [log] [blame]
Felipe Lemebc73ffc2015-12-11 15:07:14 -08001<?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"
Felipe Lemebbd91e52016-02-26 16:48:22 -080019 android:paddingTop="15dp"
20 android:paddingStart="24dp"
21 android:paddingEnd="24dp"
Felipe Lemebc73ffc2015-12-11 15:07:14 -080022 android:layout_width="wrap_content"
23 android:layout_height="wrap_content">
Felipe Lemebbd91e52016-02-26 16:48:22 -080024 <TextView
25 android:inputType="textNoSuggestions"
26 android:layout_width="match_parent"
27 android:layout_height="wrap_content"
28 android:text="@string/bugreport_info_name"/>
Felipe Lemebc73ffc2015-12-11 15:07:14 -080029 <EditText
30 android:id="@+id/name"
31 android:maxLength="30"
32 android:singleLine="true"
Felipe Lemebbd91e52016-02-26 16:48:22 -080033 android:selectAllOnFocus="true"
Felipe Lemebc73ffc2015-12-11 15:07:14 -080034 android:inputType="textNoSuggestions"
35 android:layout_width="match_parent"
Felipe Lemebbd91e52016-02-26 16:48:22 -080036 android:layout_height="wrap_content"/>
37 <TextView
38 android:layout_width="match_parent"
Felipe Lemebc73ffc2015-12-11 15:07:14 -080039 android:layout_height="wrap_content"
Felipe Lemebbd91e52016-02-26 16:48:22 -080040 android:text="@string/bugreport_info_title"/>
Felipe Lemebc73ffc2015-12-11 15:07:14 -080041 <EditText
42 android:id="@+id/title"
43 android:maxLength="80"
44 android:singleLine="true"
Felipe Lemebbd91e52016-02-26 16:48:22 -080045 android:inputType="textAutoCorrect|textCapSentences"
46 android:layout_width="match_parent"
47 android:layout_height="wrap_content"/>
48 <TextView
Felipe Lemebc73ffc2015-12-11 15:07:14 -080049 android:layout_width="match_parent"
50 android:layout_height="wrap_content"
Felipe Lemebbd91e52016-02-26 16:48:22 -080051 android:editable="false"
52 android:text="@string/bugreport_info_description"/>
Felipe Lemebc73ffc2015-12-11 15:07:14 -080053 <EditText
54 android:id="@+id/description"
55 android:singleLine="false"
Felipe Lemebbd91e52016-02-26 16:48:22 -080056 android:inputType="textMultiLine|textAutoCorrect|textCapSentences"
Felipe Lemebc73ffc2015-12-11 15:07:14 -080057 android:layout_width="match_parent"
Felipe Lemebbd91e52016-02-26 16:48:22 -080058 android:layout_height="wrap_content"/>
Felipe Lemebc73ffc2015-12-11 15:07:14 -080059</LinearLayout>