Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. executors = new AppExecutors();
  2. executors.diskIO().execute(new Runnable() {
  3. @Override
  4. public void run() {
  5. initData();
  6. executors.mainThread().execute(new Runnable() {
  7. @RequiresApi(api = Build.VERSION_CODES.M)
  8. @Override
  9. public void run() {
  10. initTableHeaderRight();
  11. initTableContentLeft();
  12. initTableKpiContent();
  13. if (isASM && !isFilterByDistributor) {
  14. initTableSummary();
  15. }
  16. handleHorizontalScroll();
  17. pbLoading.setVisibility(View.GONE);
  18. }
  19. });
  20. }
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement