Browse Source

menu button amelioration

renovate/org.robolectric-robolectric-4.x
Austin Huang 4 years ago
parent
commit
3242fdc7ef
No known key found for this signature in database GPG Key ID: 84C23AA04587A91F
  1. 4
      app/src/main/java/awais/instagrabber/fragments/main/FeedFragment.java
  2. 1
      app/src/main/res/menu/feed_menu.xml

4
app/src/main/java/awais/instagrabber/fragments/main/FeedFragment.java

@ -77,6 +77,7 @@ public class FeedFragment extends Fragment implements SwipeRefreshLayout.OnRefre
private int downloadChildPosition = -1; private int downloadChildPosition = -1;
private PostsLayoutPreferences layoutPreferences = Utils.getPostsLayoutPreferences(Constants.PREF_POSTS_LAYOUT); private PostsLayoutPreferences layoutPreferences = Utils.getPostsLayoutPreferences(Constants.PREF_POSTS_LAYOUT);
private RecyclerView storiesRecyclerView; private RecyclerView storiesRecyclerView;
private MenuItem storyListMenu;
public static List<FeedStoryModel> feedStories; public static List<FeedStoryModel> feedStories;
@ -277,6 +278,7 @@ public class FeedFragment extends Fragment implements SwipeRefreshLayout.OnRefre
@Override @Override
public void onCreateOptionsMenu(@NonNull final Menu menu, @NonNull final MenuInflater inflater) { public void onCreateOptionsMenu(@NonNull final Menu menu, @NonNull final MenuInflater inflater) {
inflater.inflate(R.menu.feed_menu, menu); inflater.inflate(R.menu.feed_menu, menu);
storyListMenu = menu.findItem(R.id.storyList);
} }
@Override @Override
@ -396,12 +398,14 @@ public class FeedFragment extends Fragment implements SwipeRefreshLayout.OnRefre
final String cookie = settingsHelper.getString(Constants.COOKIE); final String cookie = settingsHelper.getString(Constants.COOKIE);
storiesFetching = true; storiesFetching = true;
updateSwipeRefreshState(); updateSwipeRefreshState();
storyListMenu.setVisible(false);
storiesService.getFeedStories(CookieUtils.getCsrfTokenFromCookie(cookie), new ServiceCallback<List<FeedStoryModel>>() { storiesService.getFeedStories(CookieUtils.getCsrfTokenFromCookie(cookie), new ServiceCallback<List<FeedStoryModel>>() {
@Override @Override
public void onSuccess(final List<FeedStoryModel> result) { public void onSuccess(final List<FeedStoryModel> result) {
feedStoriesViewModel.getList().postValue(result); feedStoriesViewModel.getList().postValue(result);
feedStories = result; feedStories = result;
storiesFetching = false; storiesFetching = false;
storyListMenu.setVisible(true);
updateSwipeRefreshState(); updateSwipeRefreshState();
} }

1
app/src/main/res/menu/feed_menu.xml

@ -5,6 +5,7 @@
android:id="@+id/storyList" android:id="@+id/storyList"
android:icon="@drawable/ic_story_list" android:icon="@drawable/ic_story_list"
android:title="@string/feed_stories" android:title="@string/feed_stories"
android:visible="false"
app:showAsAction="always" /> app:showAsAction="always" />
<item <item
android:id="@+id/layout" android:id="@+id/layout"

Loading…
Cancel
Save