mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-16 11:47:29 +00:00
#532 point 2
This commit is contained in:
parent
b13b4b3db6
commit
b5e1101709
@ -132,7 +132,7 @@ public class StoryViewerFragment extends Fragment {
|
||||
private MenuItem menuDm;
|
||||
private SimpleExoPlayer player;
|
||||
private boolean isHashtag, isLoc;
|
||||
private String highlight;
|
||||
private String highlight, actionBarTitle;
|
||||
private boolean fetching = false, sticking = false, shouldRefresh = true;
|
||||
private int currentFeedStoryIndex;
|
||||
private double sliderValue;
|
||||
@ -239,6 +239,15 @@ public class StoryViewerFragment extends Fragment {
|
||||
releasePlayer();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onResume() {
|
||||
super.onResume();
|
||||
final ActionBar actionBar = fragmentActivity.getSupportActionBar();
|
||||
if (actionBar != null) {
|
||||
actionBar.setTitle(actionBarTitle);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDestroy() {
|
||||
releasePlayer();
|
||||
@ -681,6 +690,7 @@ public class StoryViewerFragment extends Fragment {
|
||||
if (isHighlight) {
|
||||
final ActionBar actionBar = fragmentActivity.getSupportActionBar();
|
||||
if (actionBar != null) {
|
||||
actionBarTitle = highlight;
|
||||
actionBar.setTitle(highlight);
|
||||
}
|
||||
}
|
||||
@ -688,6 +698,7 @@ public class StoryViewerFragment extends Fragment {
|
||||
currentStoryUsername = currentStoryUsername.replace("@", "");
|
||||
final ActionBar actionBar = fragmentActivity.getSupportActionBar();
|
||||
if (actionBar != null) {
|
||||
actionBarTitle = currentStoryUsername;
|
||||
actionBar.setTitle(currentStoryUsername);
|
||||
}
|
||||
}
|
||||
@ -729,21 +740,14 @@ public class StoryViewerFragment extends Fragment {
|
||||
return;
|
||||
}
|
||||
binding.storiesList.setVisibility((storyModels.size() == 1 && currentFeedStoryIndex == -1) ? View.GONE : View.VISIBLE);
|
||||
binding.btnBackward.setVisibility(currentFeedStoryIndex == -1 ? View.GONE : View.VISIBLE);
|
||||
binding.btnForward.setVisibility(currentFeedStoryIndex == -1 ? View.GONE : View.VISIBLE);
|
||||
if (currentFeedStoryIndex == -1) {
|
||||
binding.btnBackward.setVisibility(View.GONE);
|
||||
binding.btnForward.setVisibility(View.GONE);
|
||||
}
|
||||
storiesViewModel.getList().setValue(storyModels);
|
||||
currentStory = storyModels.get(0);
|
||||
refreshStory();
|
||||
}
|
||||
binding.storiesList.setVisibility((storyModels.size() == 1 && currentFeedStoryIndex == -1) ? View.GONE : View.VISIBLE);
|
||||
if (currentFeedStoryIndex == -1) {
|
||||
binding.btnBackward.setVisibility(View.GONE);
|
||||
binding.btnForward.setVisibility(View.GONE);
|
||||
}
|
||||
storiesViewModel.getList().setValue(storyModels);
|
||||
currentStory = storyModels.get(0);
|
||||
refreshStory();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onFailure(final Throwable t) {
|
||||
@ -823,6 +827,7 @@ public class StoryViewerFragment extends Fragment {
|
||||
if (isHashtag || isLoc) {
|
||||
final ActionBar actionBar = fragmentActivity.getSupportActionBar();
|
||||
if (actionBar != null) {
|
||||
actionBarTitle = currentStory.getUsername();
|
||||
actionBar.setTitle(currentStory.getUsername());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user