我會做一個活動,從服務器下載圖像,並顯示它與透明覆蓋菜單(導航欄sherlockactionbar和透明度自定義菜單屏幕底部)。Android的顯示圖像,如Facebook/Hangout /圖庫與捏到zooma和覆蓋菜單
風格喜歡Facebook的圖片瀏覽器或環聊觀衆喜歡。我需要一個聚會例如:
其他很好的例子是Android圖庫:如果我點擊圖像菜單中消失。 我該怎麼做?
我嘗試隱藏sherlock操作欄,在加載圖像的全屏webview上製作2個透明佈局:但菜單沒有與webview重疊!這是我最喜歡的方式。
我也嘗試在與該代碼庫打開一個意圖:
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("https://my-server/img/1.png"), "image/*");
startActivity(intent);
,但它要求我與應用程序繼續。有可能始終啓動默認的Android畫廊?這意味着我可以捏縮放圖像,但我沒有自定義菜單! 我更喜歡沒有外部庫。
非常感謝您
參考此鏈接http://www.zdnet.com/blog/burnette/how-to-use-multi-touch-in-android-2-part-6-implementing-the-pinch- zoom-gesture/1847 – Nitin
也參考此鏈接http://www.tutorialspoint.com/android/android_gestures.htm – Nitin