Hide scheduled messages bar with input panel.

This commit is contained in:
Clark
2023-01-27 11:25:48 -05:00
committed by Greyson Parrelli
parent 23190a2f6e
commit 834283ba9b
3 changed files with 35 additions and 16 deletions

View File

@@ -35,4 +35,12 @@ public class Stub<T extends View> {
}
}
public int getVisibility() {
if (resolved()) {
return get().getVisibility();
} else {
return View.GONE;
}
}
}