1

我正在从数据库加载图像,listview并且我想创建一个浮动窗口。单击其中一个后,将附加浮动窗口图片。

我知道如何处理onClick列表中的事件,但我找不到正确创建活动布局的方法

这就是我到目前为止提出的 -

<?xml version="1.0" encoding="UTF-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/image_dialog_root"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@android:color/transparent"
    android:gravity="center"
    android:paddingLeft="5dp"
    android:paddingRight="5dp" >

    <ImageView
        android:id="@+id/your_image"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:scaleType="centerInside"
        android:src="@drawable/ab" />

    <TextView
        android:id="@+id/image_desc"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@android:color/background_light" />

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

        <Button
            android:id="@+id/open_in_other_app"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_marginRight="5dp"
            android:text="button1" />

        <Button
            android:id="@+id/close_image_view"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_marginLeft="5dp"
            android:text="button2" >
        </Button>
    </RelativeLayout>

</FrameLayout>
4

1 回答 1

2

有了@twntee 的建议和一些 serach,我得到了这篇文章,它解决了我的问题 - http://www.mkyong.com/android/android-custom-dialog-example/

于 2013-09-03T22:06:11.733 回答