feat(TV UI): Fix clone site focus (#1179)

This commit is contained in:
KingLucius 2024-07-05 19:04:32 +03:00 committed by GitHub
parent e1d4a46309
commit 699a6979a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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