Openable

public interface Openable

Known direct subclasses
DrawerLayout

DrawerLayout acts as a top-level container for window content that allows for interactive "drawer" views to be pulled out from one or both vertical edges of the window.

SlidingPaneLayout

SlidingPaneLayout provides a horizontal, multi-pane layout for use at the top level of a UI.


A layout that has two states: opened and closed.

Summary

Public methods

abstract void

Move the layout to the closed state.

abstract boolean

Check if the layout is currently in the opened state.

abstract void

Move the layout to the opened state.

Public methods

close

Added in 1.1.0
abstract void close()

Move the layout to the closed state.

isOpen

Added in 1.1.0
abstract boolean isOpen()

Check if the layout is currently in the opened state.

Returns
boolean

true if the layout's state is considered opened.

open

Added in 1.1.0
abstract void open()

Move the layout to the opened state.