How to develop this menu (in the picture)

The question arises. How to develop such a menu (see below in the picture).

Picture

I'm interested in technology. IOW idea, classes, dodgy things. I do not want to get working code, but the idea of ​​how to develop it.

Thanks in advance...

+3
source share
4 answers

If you want the implementation to check this solution. I used it and it works great http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/

+2
source

LinearLayout , . ImageButtons, . , - ...

. . AbsoluteLayout AbsoluteLayout , .

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="300px"
            android:id="@+id/parent_one"
            android:layout_height="80px"
                    android:src="@drawable/NICE_BACLKGROUND">

                    <ImageButton
                        android:layout_width="75px"
                        android:layout_height="47px"
                        android:layout_marginLeft="10px"
                        android:src="@drawable/button1">
                        </ImageButton>

                    <ImageButton
                        android:id="@+id/btnGoTo"
                        android:layout_width="75px"
                        android:layout_height="47px"
                        android:src="@drawable/button2">
                    </ImageButton>

                    <ImageButton
                        android:id="@+id/btnSaveAn"
                        android:layout_width="75px"
                        android:layout_height="47px"
                        android:src="@drawable/save_to_dash">
                    </ImageButton>
                    <ImageButton
                        android:id="@+id/btnClear"
                        android:layout_width="75px"
                        android:layout_height="47px"
                        android:src="@drawable/clear">
                    </ImageButton>
                                    <ImageButton
                        android:id="@+id/btnSaveAnd"
                        android:layout_width="75px"
                        android:layout_height="47px"
                        android:src="@drawable/save_to">
                    </ImageButton>
                    <ImageButton
                        android:id="@+id/btnClear"
                        android:layout_width="75px"
                        android:layout_height="47px"
                        android:src="@drawable/clear">
                    </ImageButton>

            </LinearLayout>
0

.

0

Source: https://habr.com/ru/post/1794976/


All Articles