EtchDroid/app/src/main/res/layout/fragment_select_flash_metho...

45 lines
1.6 KiB
XML

<?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=".fragments.FlashMethodFragment"
tools:showIn="@layout/activity_main">
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/flash_dd_usb_api_radio"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/flash_dd_usb_api"
android:onClick="onRadioButtonClicked"/>
<RadioButton
android:id="@+id/flash_dd_root_radio"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/flash_dd_root"
android:onClick="onRadioButtonClicked"/>
<RadioButton
android:id="@+id/flash_unetbootin_radio"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/flash_unetbootin"
android:onClick="onRadioButtonClicked"/>
<RadioButton
android:id="@+id/flash_woeusb_radio"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/flash_woeusb"
android:onClick="onRadioButtonClicked"/>
</RadioGroup>
</LinearLayout>