I showed a list of Items using Recycler View on Android TV. But my list is not scrolling and has focused on it. Kindly help me to resolve this issue.
private void initRecyclerView(){
ArrayList<String> categoryList = (ArrayList<String>) getIntent().getSerializableExtra("categoryList");
RecyclerView recyclerView=(RecyclerView) findViewById(R.id.categoryRecyclerView);
RecyclerViewAdapter adapter=new RecyclerViewAdapter(this,categoryList);
System.out.println("investmentRecyclerView array: " + categoryList);
recyclerView.setAdapter(adapter);
recyclerView.setLayoutManager(new LinearLayoutManager(this));
}