1
0
Fork 0
mirror of https://github.com/KokaKiwi/BarInsta synced 2026-04-03 09:31:34 +00:00
This commit is contained in:
Austin Huang 2021-06-04 16:02:29 -04:00
parent bcfe4819cb
commit 696a8c9c61
No known key found for this signature in database
GPG key ID: 84C23AA04587A91F
10 changed files with 17 additions and 10 deletions

View file

@ -174,6 +174,13 @@ public final class FollowViewerFragment extends Fragment implements SwipeRefresh
onRefresh();
}
@Override
public void onResume() {
super.onResume();
setTitle(username);
setSubtitle(type);
}
private void setTitle(final String title) {
final ActionBar actionBar = fragmentActivity.getSupportActionBar();
if (actionBar == null) return;