MaterialContentOverflow

Additional

Language
Java
Version
N/A
Created
Aug 26, 2015
Updated
Sep 29, 2018 (Retired)
Owner
Artur Galeno (arturgaleno)
Contributors
Santiago Castro (bryant1410)
Artur Galeno (arturgaleno)
2
Activity
Badge
Generate
Download
Source code

Advertisement

MaterialContentOverflow

Usage

MaterialContentOverflow is a ViewGroup that implement the Persistent Bottom Sheets pattern of Google Material Design.

So you can put views inside it, and the MaterialContentOverflow will be displayed at bottom of screen.

Sliding the view to up will show the content, and sliding to to bottom will hide.

The Google Material Design related to this view can be see there.

See the example app for more details.

<com.materialoverflowcontent.MaterialContentOverflow xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:fabButtonColor="@color/fab"
    app:buttonDrawable="@drawable/abc_btn_rating_star_off_mtrl_alpha"
    app:contentColor="@color/primary"
    app:buttonPosition="right">

    ...

<\com.materialoverflowcontent.MaterialContentOverflow>

Saving Instance State

Save the instance state is very simple, as follow:

@Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
    super.onRestoreInstanceState(savedInstanceState);
    contentOverflow.onRestoreInstanceState(savedInstanceState);
}
@Override
protected void onSaveInstanceState(Bundle outState) {
    contentOverflow.onSaveInstanceState(outState);
    super.onSaveInstanceState(outState);
}

Attributes

fabButtonColor - Determines the color of the FloatingActionButton.

buttonDrawable - The icon that will show inside FloatingActionButton.

contentColor - The background color of overflow content.

buttonPosition - The position can be, "center", right" or "left".

Gradle

compile 'com.materialcontentoverflow:materialcontentoverflow:1.1.0'

License

Copyright 2015 Artur Galeno Muniz

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.