mirror of
https://github.com/Michatec/Radio.git
synced 2026-05-31 00:42:40 +02:00
25 lines
793 B
XML
25 lines
793 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="24dp">
|
|
|
|
<TextView
|
|
android:id="@+id/dialog_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/pref_language_selection_title"
|
|
android:textSize="24sp"
|
|
android:textStyle="bold"
|
|
android:paddingBottom="16dp" />
|
|
|
|
<RadioGroup
|
|
android:id="@+id/language_radio_group"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
</RadioGroup>
|
|
|
|
</LinearLayout> |