Guest User

Untitled

a guest
Mar 4th, 2020
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. @SuppressLint("RestrictedApi")
  2. fun changeStateOfMainLayout() {
  3. if (manageLayout.visibility == LinearLayout.VISIBLE) {
  4. manageButton.visibility = View.VISIBLE
  5. manageLayout.visibility = ConstraintLayout.GONE
  6. mainLayout.isSaveEnabled = true
  7. } else {
  8. manageLayout.visibility = ConstraintLayout.VISIBLE
  9. manageButton.visibility = View.GONE
  10. mainLayout.isSaveEnabled = false
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment