在gridview中使用浮动操作按钮

时间:2015-05-19 05:31:07

标签: android material-design floating-action-button

我试图在我的gridview中实现一个打开弹出窗口的按钮。我心中有这样的事情。

enter image description here

它应该生成类似这样的东西

enter image description here

是否有要添加的库才能使用它?

这是我试图在

上实现此功能的gridview
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="5dp"
    tools:context=".MainActivity" >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <ImageView
            android:id="@+id/image_song"
            android:layout_width="match_parent"
            android:layout_height="80dp"
            android:background="@drawable/etuneslogo"
            android:scaleType="fitXY"
            android:paddingLeft="3dp"
            android:paddingRight="3dp"
            android:adjustViewBounds="true"/>

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:layout_below="@+id/image_song">

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                />

        <TextView
        android:id="@+id/song_name"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="3dp"
        android:layout_marginRight="3dp"
        android:paddingLeft="2dp"
        android:paddingRight="2dp"
        android:textSize="14dp"
        android:background="@color/fmYellow"
        android:textColor="@color/gridViewText"
        android:fontFamily="sans-serif-medium"
        android:textStyle="bold" />

        <TextView
            android:id="@+id/artist_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/song_name"
            android:layout_marginLeft="3dp"
            android:layout_marginRight="3dp"
            android:paddingLeft="2dp"
            android:paddingRight="2dp"
            android:paddingBottom="4dp"
            android:background="@color/fmYellow"
            android:textSize="12dp"
            android:textColor="@color/gridViewText"
            android:fontFamily="sans-serif-light"
            android:textStyle="bold" />

        </RelativeLayout>

    </RelativeLayout>

</RelativeLayout>

1 个答案:

答案 0 :(得分:1)

我认为您想要做的是对gridview中的每个项目使用AlertDialog。

我只将它用于单个按钮,但我认为一旦你为每个gridview项添加一个意图它就会起作用。

以下是如何使用AlertDialog

的一个很好的解释

Android: create a popup that has multiple selection options