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));
}
Set focusable=true for Item's layout :
Ex.
list_item.xml
is RecycerlView's item :To see if its focused or not add this sector as drawable, and add images accordingly :