我在这个应用程序中实现益智游戏应用程序创建一个按钮,单击按钮显示拼图的原始图像。在对话框中显示原始图像然后单击确定返回实际页面如何实现
bitmapOrg = BitmapFactory.decodeResource(getResources(),mThumbIds[GameActivity.level]);
请提前解决一些解决方案,此问题需要等待更多天才能提前付款
答案 0 :(得分:2)
我认为你需要在对话框中设置一个图标 如果是这样,您可以通过以下
来完成AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Message");
builder.setCancelable(false)
.setPositiveButton("Ok",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
}
});
AlertDialog alert = builder.create();
alert.setTitle("Title");
alert.setIcon(R.drawable.your_image);
alert.show();
谢谢
答案 1 :(得分:0)
如果要在对话框中设置图像,这是一个粗略的答案:
ImageView image = new ImageVIew(this);
image.setLayoutParams(new LayoutParams(你的宽度,高度));
通过使用drawable或通过设置位图来设置此imageview上的背景图像
new AlertDialog()。Builder(this).setView(image).show();
这只是一个粗略的解决方案,但它会给你一个想法