mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
Fixes #5344 Some categories hidden at top of Upload Wizard suggestions, need to manually scroll up (#5370)
* Fix Issue #5344 * fix update Issue #5344 * Add Comment
This commit is contained in:
parent
b7913fa027
commit
6f96e8959b
2 changed files with 31 additions and 1 deletions
|
|
@ -198,6 +198,22 @@ public class UploadCategoriesFragment extends UploadBaseFragment implements Cate
|
||||||
} else {
|
} else {
|
||||||
adapter.setItems(categories);
|
adapter.setItems(categories);
|
||||||
}
|
}
|
||||||
|
adapter.notifyDataSetChanged();
|
||||||
|
|
||||||
|
// Nested waiting for search result data to load into the category
|
||||||
|
// list and smoothly scroll to the top of the search result list.
|
||||||
|
rvCategories.post(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
rvCategories.smoothScrollToPosition(0);
|
||||||
|
rvCategories.post(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
rvCategories.smoothScrollToPosition(0);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -246,7 +246,21 @@ public class DepictsFragment extends UploadBaseFragment implements DepictsContra
|
||||||
adapter.setItems(depictedItemList);
|
adapter.setItems(depictedItemList);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
depictsRecyclerView.smoothScrollToPosition(0);
|
|
||||||
|
// Nested waiting for search result data to load into the depicted item
|
||||||
|
// list and smoothly scroll to the top of the search result list.
|
||||||
|
depictsRecyclerView.post(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
depictsRecyclerView.smoothScrollToPosition(0);
|
||||||
|
depictsRecyclerView.post(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
depictsRecyclerView.smoothScrollToPosition(0);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue