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:layout_width="wrap_content" 30 android:layout_height="wrap_content" 31 android:text="TITLE" 32 android:textColor="@android:color/holo_green_light" 33 android:textSize="28sp" /> 34 35 <TextView 36 android:layout_width="wrap_content" 37 android:layout_height="wrap_content" 38 android:text="USER" 39 android:textColor="@android:color/holo_red_dark" 40 android:textSize="28sp" /> 41 42 <TextView 43 android:layout_width="wrap_content" 44 android:layout_height="wrap_content" 45 android:text="BUG TIME" 46 android:textColor="@android:color/holo_red_light" 47 android:textSize="28sp" /> 48 49 <TextView 50 android:layout_width="wrap_content" 51 android:layout_height="wrap_content" 52 android:text="STATUS" 53 android:textColor="@android:color/holo_orange_light" 54 android:textSize="28sp" /> 55 56 <TextView 57 android:layout_width="wrap_content" 58 android:layout_height="wrap_content" 59 android:text="OTHER" 60 android:textColor="@android:color/holo_blue_dark" 61 android:textSize="28sp" /> 62 63 <Button 64 android:id="@+id/bug_info_upload_button" 65 android:layout_width="wrap_content" 66 android:layout_height="wrap_content" 67 android:layout_marginTop="@dimen/bug_report_user_action_button_padding" 68 android:textSize="@dimen/bug_report_button_text_size" 69 android:text="@string/bugreport_upload_button_text" /> 70 71 </LinearLayout> 72 73 <LinearLayout 74 android:layout_width="wrap_content" 75 android:layout_height="wrap_content" 76 android:paddingLeft="10dp" 77 android:orientation="vertical"> 78 79 <TextView 80 android:id="@+id/bug_info_row_title" 81 android:layout_width="wrap_content" 82 android:layout_height="wrap_content" 83 android:layout_gravity="left" 84 android:textSize="28sp" /> 85 86 87 <TextView 88 android:id="@+id/bug_info_row_user" 89 android:layout_width="wrap_content" 90 android:layout_height="wrap_content" 91 android:textSize="28sp" /> 92 93 94 <TextView 95 android:id="@+id/bug_info_row_timestamp" 96 android:layout_width="wrap_content" 97 android:layout_height="wrap_content" 98 android:textSize="28sp" /> 99 100 101 <TextView 102 android:id="@+id/bug_info_row_status" 103 android:layout_width="wrap_content" 104 android:layout_height="wrap_content" 105 android:textSize="28sp" /> 106 107 108 <TextView 109 android:id="@+id/bug_info_row_message" 110 android:layout_width="wrap_content" 111 android:layout_height="wrap_content" 112 android:textSize="28sp" /> 113 114 <Button 115 android:id="@+id/bug_info_move_button" 116 android:layout_width="wrap_content" 117 android:layout_height="wrap_content" 118 android:layout_marginTop="@dimen/bug_report_user_action_button_padding" 119 android:textSize="@dimen/bug_report_button_text_size" 120 android:text="@string/bugreport_move_button_text" /> 121 122 </LinearLayout> 123 124</LinearLayout>