summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/statistics_mode_select_dialog.xml
blob: 8f8e1e6574af9aab552f66dd066c0eb8100ab484 (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
<?xml version="1.0" encoding="utf-8"?>
<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:padding="16dp">

    <TextView
            android:text="@string/statistics_speed_not_counted"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="16dp"/>

    <RadioButton
            android:id="@+id/statistics_mode_normal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/statistics_mode_normal"/>

    <RadioButton
            android:id="@+id/statistics_mode_count_all"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/statistics_mode_count_all"/>
</RadioGroup>