0
mUserListLayoutManager = new LinearLayoutManager(getApplicationContext(), LinearLayout.VERTICAL, false);

LinearLayout.Vertical is creating a warning

David Wasser
  • 93,459
  • 16
  • 209
  • 274

1 Answers1

3

Since you didn't post the warning message, I'm going to jump to conclusions and assume:

You should use LinearLayoutManager.VERTICAL instead of LinearLayout.VERTICAL.

David Wasser
  • 93,459
  • 16
  • 209
  • 274