3
3
Fork 1
mirror of https://github.com/recloudstream/cloudstream.git synced 2024-08-15 01:53:11 +00:00

feat(TV UI): Fix clone site focus

This commit is contained in:
KingLucius 2024-07-05 18:01:00 +03:00
parent e1d4a46309
commit 8b1c055f01

View file

@ -1,19 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/add_site"
android:text="@string/add_site_pref"
style="@style/SettingsItem">
android:id="@+id/add_site"
android:text="@string/add_site_pref"
android:focusable="true"
style="@style/SettingsItem">
<requestFocus />
</TextView>
<TextView
android:id="@+id/remove_site"
android:text="@string/remove_site_pref"
style="@style/SettingsItem" />
android:id="@+id/remove_site"
android:text="@string/remove_site_pref"
android:focusable="true"
style="@style/SettingsItem" />
</LinearLayout>