2022-03-04 21:27:10 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="wrap_content"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:layout_height="wrap_content">
|
2022-03-04 21:27:10 +05:30
|
|
|
|
|
|
|
|
2022-05-20 15:50:36 +05:30
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
2022-03-04 21:27:10 +05:30
|
|
|
android:layout_width="match_parent"
|
2022-05-20 15:50:36 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/app_name"
|
|
|
|
android:gravity="center"
|
|
|
|
android:layout_margin="10dp"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:textSize="20sp" />
|
2022-03-04 21:27:10 +05:30
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/video_spinner"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:layout_margin="8dp" />
|
|
|
|
|
2022-03-04 21:27:10 +05:30
|
|
|
<Spinner
|
|
|
|
android:id="@+id/audio_spinner"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:layout_margin="8dp" />
|
|
|
|
|
2022-03-04 21:27:10 +05:30
|
|
|
<RadioGroup
|
|
|
|
android:id="@+id/radioGp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp">
|
2022-06-03 22:19:48 +05:30
|
|
|
|
2022-03-04 21:27:10 +05:30
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/mkv"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text=".mkv"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:checked="true" />
|
|
|
|
|
2022-03-04 21:27:10 +05:30
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/mp4"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:text=".mp4" />
|
2022-03-04 21:27:10 +05:30
|
|
|
</RadioGroup>
|
2022-06-03 22:19:48 +05:30
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/download"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/download"
|
2022-06-04 12:01:34 +05:30
|
|
|
android:textColor="@color/white"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:padding="8dp"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:layout_gravity="center" />
|
2022-03-04 21:27:10 +05:30
|
|
|
</LinearLayout>
|