blob: fd00bc646f2196042ed1692ae73dddcd78a8d4dd [file] [log] [blame]
Felipe Leme834496f2015-12-16 10:05:44 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2015 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
Felipe Lemee0011a82016-04-12 09:39:45 -070018<ScrollView xmlns:android="http://schemas.android.com/apk/res/android">
19 <RelativeLayout
Felipe Leme834496f2015-12-16 10:05:44 -080020 android:layout_width="match_parent"
Felipe Lemee0011a82016-04-12 09:39:45 -070021 android:layout_height="match_parent"
22 android:orientation="horizontal"
23 android:paddingStart="20dp"
24 android:paddingEnd="24dp"
25 android:paddingTop="15dp"
26 >
Felipe Leme834496f2015-12-16 10:05:44 -080027
Felipe Lemee0011a82016-04-12 09:39:45 -070028 <CheckedTextView
29 android:id="@+id/bugreport_option_interactive_title"
30 android:layout_width="match_parent"
31 android:layout_height="wrap_content"
32 android:checked="true"
33 android:drawableStart="?android:attr/listChoiceIndicatorSingle"
34 android:ellipsize="marquee"
35 android:gravity="center_vertical"
36 android:paddingEnd="?android:attr/dialogPreferredPadding"
37 android:text="@*android:string/bugreport_option_interactive_title"
38 android:textAppearance="?android:attr/textAppearanceMedium"
39 android:textColor="?android:attr/textColorAlertDialogListItem" />
Felipe Leme834496f2015-12-16 10:05:44 -080040
Felipe Lemee0011a82016-04-12 09:39:45 -070041 <TextView
42 android:id="@+id/bugreport_option_interactive_summary"
43 android:layout_width="match_parent"
44 android:layout_height="wrap_content"
45 android:layout_below="@+id/bugreport_option_interactive_title"
46 android:maxLines="10"
47 android:paddingBottom="10dp"
48 android:paddingStart="32dp"
49 android:paddingEnd="?android:attr/dialogPreferredPadding"
50 android:text="@*android:string/bugreport_option_interactive_summary"
51 android:textAppearance="?android:attr/textAppearanceListItemSecondary"
52 android:textColor="?android:attr/textColorSecondary" />
Felipe Leme834496f2015-12-16 10:05:44 -080053
Felipe Lemee0011a82016-04-12 09:39:45 -070054 <CheckedTextView
55 android:id="@+id/bugreport_option_full_title"
56 android:layout_width="match_parent"
57 android:layout_height="wrap_content"
58 android:layout_below="@+id/bugreport_option_interactive_summary"
59 android:checked="false"
60 android:drawableStart="?android:attr/listChoiceIndicatorSingle"
61 android:ellipsize="marquee"
62 android:gravity="center_vertical"
63 android:paddingEnd="?android:attr/dialogPreferredPadding"
64 android:text="@*android:string/bugreport_option_full_title"
65 android:textAppearance="?android:attr/textAppearanceMedium"
66 android:textColor="?android:attr/textColorAlertDialogListItem" />
Felipe Leme834496f2015-12-16 10:05:44 -080067
Felipe Lemee0011a82016-04-12 09:39:45 -070068 <TextView
69 android:id="@+id/bugreport_option_full_summary"
70 android:layout_width="match_parent"
71 android:layout_height="wrap_content"
72 android:layout_below="@+id/bugreport_option_full_title"
73 android:maxLines="10"
74 android:paddingBottom="10dp"
75 android:paddingStart="32dp"
76 android:paddingEnd="?android:attr/dialogPreferredPadding"
77 android:text="@*android:string/bugreport_option_full_summary"
78 android:textAppearance="?android:attr/textAppearanceListItemSecondary"
79 android:textColor="?android:attr/textColorSecondary" />
80
81 </RelativeLayout>
82</ScrollView>