Skip to content

Commit

Permalink
feat(TV UI): Fix clone site focus (#1179)
Browse files Browse the repository at this point in the history
  • Loading branch information
KingLucius authored Jul 5, 2024
1 parent e1d4a46 commit 699a697
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions app/src/main/res/layout/add_remove_sites.xml
Original file line number Diff line number Diff line change
@@ -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>

0 comments on commit 699a697

Please sign in to comment.