Skip to content
Permalink
35a7673088
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
46 lines (40 sloc) 1.33 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/chooseTypeNotification" />
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/radioOutdoor"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/outdoor" />
<RadioButton
android:id="@+id/radioIndoor"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/indoor" />
</RadioGroup>
<Button
android:id="@+id/buttonStartRun"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/startRunning" />
<Button
android:id="@+id/buttonCheckPrevious"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/checkPrevious" />
</LinearLayout>