EtchDroid/app/src/main/res/layout/fragment_select_flash_method.xml

47 lines
1.7 KiB
XML
Raw Normal View History

2018-08-12 14:33:11 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
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"
2018-08-15 17:06:50 +00:00
android:onClick="onRadioButtonClicked"
android:text="@string/flash_dd_usb_api"/>
2018-08-12 14:33:11 +00:00
<RadioButton
android:id="@+id/flash_dd_root_radio"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-08-13 23:32:02 +00:00
android:enabled="false"
2018-08-15 17:06:50 +00:00
android:onClick="onRadioButtonClicked"
android:text="@string/flash_dd_root"/>
2018-08-12 14:33:11 +00:00
<RadioButton
android:id="@+id/flash_unetbootin_radio"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-08-13 23:32:02 +00:00
android:enabled="false"
2018-08-15 17:06:50 +00:00
android:onClick="onRadioButtonClicked"
android:text="@string/flash_unetbootin"/>
2018-08-12 14:33:11 +00:00
<RadioButton
android:id="@+id/flash_woeusb_radio"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-08-13 23:32:02 +00:00
android:enabled="false"
2018-08-15 17:06:50 +00:00
android:onClick="onRadioButtonClicked"
android:text="@string/flash_woeusb"/>
2018-08-12 14:33:11 +00:00
</RadioGroup>
</LinearLayout>