我正在为Android TV开发一个应用程序 我的布局有水平的LinearLayout(自定义),用于导航,下面是片段的容器。 我想要的是当用户专注于片段中的任何项目时(假设片段只有1行视图),当他点击D-Pad上的UP时,它上方的LinearLayout将获得焦点,而不是最接近的一次。
<?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:gravity="center_horizontal"
android:orientation="vertical">
<com.myApp.tv.view.categories.CategoriesLayout
android:id="@+id/home_categoriesLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="50dp"
android:layout_marginTop="30dp"
android:descendantFocusability="beforeDescendants"
android:focusable="true"
android:orientation="horizontal" />
<FrameLayout
android:id="@+id/home_contentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
我真的不想干扰片段代码 请给我你的建议,谢谢