summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/bug_report.xml
blob: 1cc9bc9d8e2112f19347604afadf1f4d1a660068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="vertical"
              android:padding="16dp">
    <Button
            android:id="@+id/btn_open_bug_tracker"
            android:text="@string/open_bug_tracker"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

    <Button
            android:id="@+id/btn_copy_log"
            android:text="@string/copy_to_clipboard"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

    <Button
            android:id="@+id/btn_export_logcat"
            android:text="@string/export_logs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

    <TextView
            android:layout_marginTop="8dp"
            android:id="@+id/crash_report_logs"
            android:textIsSelectable="true"
            android:textSize="12sp"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"/>

</LinearLayout>