changed AccountActivity so that after following someone the FAB hides itself

This commit is contained in:
Zachary Epps 2017-04-05 13:49:28 -04:00
commit cbae26dd4c
2 changed files with 3 additions and 1 deletions

View file

@ -292,7 +292,7 @@ public class AccountActivity extends BaseActivity {
private void updateButtons() {
invalidateOptionsMenu();
FloatingActionButton floatingBtn = (FloatingActionButton) findViewById(R.id.floating_btn);
final FloatingActionButton floatingBtn = (FloatingActionButton) findViewById(R.id.floating_btn);
if(!isSelf && !blocking && !following) {
floatingBtn.show();
@ -301,6 +301,7 @@ public class AccountActivity extends BaseActivity {
@Override
public void onClick(View v) {
follow(accountId);
floatingBtn.hide();
}
});
}