如何在Android上使用Intent显示来自网络的全屏图像?

时间:2011-10-20 11:15:23

标签: android

是否可以在Android上使用Intent显示来自网络的全屏图像?

2 个答案:

答案 0 :(得分:0)

是的,您可以使用ImageView, 这是一个例子:
http://www.androidpeople.com/android-imageview-scaletype-example

您需要使用ScaleType.FIT_XY

答案 1 :(得分:0)

目前我使用的是这样的东西:

Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(uri, "image/png");
startActivity(intent);