Skip to content
This repository has been archived by the owner on Jun 26, 2024. It is now read-only.

Commit

Permalink
app: Fix build error
Browse files Browse the repository at this point in the history
Signed-off-by: Vipul Jha <vipuljha08@gmail.com>
  • Loading branch information
lordarcadius committed Apr 29, 2021
1 parent 39a721c commit 74c346f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ protected void onCreate(Bundle savedInstanceState) {
swipeRefreshLayout = findViewById(R.id.countrywise_refresh);
search = findViewById(R.id.search_editText);

recyclerView.setHasFixedSize(true);
//recyclerView.setHasFixedSize(true);
recyclerView.setLayoutManager(new LinearLayoutManager(this));
countrywiseModelArrayList = new ArrayList<>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ protected void onCreate(Bundle savedInstanceState) {
swipeRefreshLayout = findViewById(R.id.district_refresh);
search = findViewById(R.id.search_editText);

recyclerView.setHasFixedSize(true);
//recyclerView.setHasFixedSize(true);
recyclerView.setLayoutManager(new LinearLayoutManager(this));
districtModelArrayList = new ArrayList<>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ protected void onCreate(Bundle savedInstanceState) {

getWindow().setNavigationBarColor(ContextCompat.getColor(this, R.color.colorPrimaryDark));

recyclerView.setHasFixedSize(true);
//recyclerView.setHasFixedSize(true);
recyclerView.setLayoutManager(new LinearLayoutManager(this));
statewiseModelArrayList = new ArrayList<>();

Expand Down

0 comments on commit 74c346f

Please sign in to comment.