我试图做的是一个读取 QR-CODE(称为图像)的应用程序,并且在读取之后,显示一个对话框,其中包含与 QR-CODE 相关的图像和数据库获取的描述。
关于如何做到这一点的任何建议?
我在 Internet 上可以找到的只是如何使用自定义布局创建 Dialog。而已。
我试图做的是一个读取 QR-CODE(称为图像)的应用程序,并且在读取之后,显示一个对话框,其中包含与 QR-CODE 相关的图像和数据库获取的描述。
关于如何做到这一点的任何建议?
我在 Internet 上可以找到的只是如何使用自定义布局创建 Dialog。而已。
我假设您需要在自定义对话框中显示图像
定义 dialog.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
在按钮上的活动中单击显示一个对话框
Button b= (Button) findViewById(R.id.button1);
b.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
showpopup();
}
});
public void showpopup()
{
Dialog d = new Dialog(MainActivity.this);
d.setContentView( R.layout.dialog);
d.setTitle("my title");
ImageView iv = (ImageView) d.findViewById(R.id.imageView1);
iv.setImageResource(R.drawable.afor);
// set your image here. I have used a resource from the drawable folder
d.show();
}
您可以使用setContentView()
n 只需将 ImageView 作为参数传递给它。