abstract class PullCollapsibleActivity : AppCompatActivity
An Activity that can be dismissed by pulling it vertically. Requires these these properties to be present in the Activity theme:
true @null
PullCollapsibleActivity()
An Activity that can be dismissed by pulling it vertically. Requires these these properties to be present in the Activity theme: |
fun expandFrom(fromRect: Rect): Unit |
|
fun expandFromTop(): Unit |
|
open fun finish(): Unit |
|
open fun onCreate(savedInstanceState: Bundle?): Unit |
|
open fun onOptionsItemSelected(item: MenuItem): Boolean |
|
open fun onStart(): Unit |
|
open fun setContentView(layoutResID: Int): Unitopen fun setContentView(view: View): Unitopen fun setContentView(view: View, params: LayoutParams): Unit |
|
fun setEntryAnimationEnabled(entryAnimationEnabled: Boolean): Unit |
|
fun setPullToCollapseEnabled(enabled: Boolean): Unit
Defaults to true. When disabled, this behaves like a normal Activity with no expandable page animations. Should be called before onCreate(). |