Browse Source

disable scrolling on new topics

pull/49/head
Thodoris1999 6 years ago
parent
commit
8484af4698
  1. 5
      app/src/main/java/gr/thmmy/mthmmy/activities/topic/TopicActivity.java

5
app/src/main/java/gr/thmmy/mthmmy/activities/topic/TopicActivity.java

@ -172,6 +172,7 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
//LinearLayoutManager layoutManager = new LinearLayoutManager(getApplicationContext()); //LinearLayoutManager layoutManager = new LinearLayoutManager(getApplicationContext());
CustomLinearLayoutManager layoutManager = new CustomLinearLayoutManager( CustomLinearLayoutManager layoutManager = new CustomLinearLayoutManager(
getApplicationContext(), topicPageUrl); getApplicationContext(), topicPageUrl);
recyclerView.setLayoutManager(layoutManager); recyclerView.setLayoutManager(layoutManager);
topicAdapter = new TopicAdapter(this, postsList); topicAdapter = new TopicAdapter(this, postsList);
recyclerView.setAdapter(topicAdapter); recyclerView.setAdapter(topicAdapter);
@ -632,10 +633,10 @@ public class TopicActivity extends BaseActivity implements TopicAdapter.OnPostFo
postsList.addAll(postList); postsList.addAll(postList);
topicAdapter.notifyDataSetChanged(); topicAdapter.notifyDataSetChanged();
}); });
viewModel.getFocusedPostIndex().observe(this, focusedPostIndex -> { /*viewModel.getFocusedPostIndex().observe(this, focusedPostIndex -> {
if (focusedPostIndex == null) return; if (focusedPostIndex == null) return;
recyclerView.scrollToPosition(focusedPostIndex); recyclerView.scrollToPosition(focusedPostIndex);
}); });*/
viewModel.getTopicTaskResultCode().observe(this, resultCode -> { viewModel.getTopicTaskResultCode().observe(this, resultCode -> {
if (resultCode == null) return; if (resultCode == null) return;
progressBar.setVisibility(ProgressBar.GONE); progressBar.setVisibility(ProgressBar.GONE);

Loading…
Cancel
Save