現在、Android モバイル アプリを Android TV に移植しようとしています。Android TV アプリで正しく表示されているように見える RecyclerView があります。RecyclerView に linearLayout を使用しています。しかし、dpad コントロールを使用して RecyclerView 内をナビゲートできないようです。
何か案は?
関連するxmlは次のとおりです。
<android.support.v7.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/RecyclerView"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="left"
android:background="@color/nav_bg"
android:scrollbars="vertical"
tools:showIn="@layout/activity_content" />