changed AccountActivity so that after following someone the FAB hides itself
This commit is contained in:
parent
2cb0b96abd
commit
cbae26dd4c
2 changed files with 3 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue