Floating Panel

0

The main screen of our system is very extensive, so the user needs several scrolls until he reaches the last line of the registry.

I put the save, cancel and other buttons in the end of the layout, in fact, it is a horizontal scroll where it has access to several other options.

In this way the user needs to navigate to the bottom of the screen to click the buttons.

If I put it on top and it had to fill the last line, it would have to come back up.

Since not all fields are required, I do not know when it will be ready to write or cancel.

I thought the solution would be a floating panel with this taskbar that would be visible all the time, being it anywhere on the main screen.

Another option would be for me to put a menu. That way he could access whenever he wanted. I like the floating bar because of the challenge and because it looks more attractive, but ...

Someone has an idea or link to get me on the right track.

    
asked by anonymous 28.04.2016 / 19:24

1 answer

1

An interresting output is the FloatingActionButton that is very simple to implement link

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@android:drawable/ic_media_play" />

Ifthereareseveralbuttonsyoucanusethe link can be a very interesting option

    
28.04.2016 / 23:31