我正在将数据库从db加载到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>
答案 0 :(得分:2)
通过@twntee建议和一些搜索我得到了这篇文章解决了我的问题 - http://www.mkyong.com/android/android-custom-dialog-example/