2012-11-02 52 views
0

目前我顯示使用下面的代碼在全屏意圖位圖:全屏圖像意圖沒有刪除選項

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

我的問題是,它會打開在某些設備畫廊,而我只是想允許用戶查看圖像,就這些。有任何想法嗎?

謝謝!

+0

爲什麼不只是顯示全屏圖像視圖? – Phil

回答

2

要在我的評論闡述只是大概使用的ImageView:

ImageView v = new ImageView(this); 
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT); 
v.setLayoutParams(layoutParams); 

getContentView().addView(v); 

或像這樣的東西。