0
我在WebView內部顯示了一些圖像,並在GridView內顯示了此webview,並且我希望在圖像單擊後以全屏模式(新活動)顯示每個圖像,這是可能的? 如果有可能我應該使用onclick事件? Webview.onclick或gridview.onitemclick ...?Android:在全屏模式下從webview打開圖像
這是我在網頁視圖顯示圖像
WebView webview=(WebView)myView.findViewById(R.id.wv_tool_image);
webview.getSettings().setLoadWithOverviewMode(true);
webview.getSettings().setUseWideViewPort(true);
webview.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY);
webview.setScrollbarFadingEnabled(false);
String html = "<html><body>" + "<img src=\"" + SaveSettings.ServerURL +"Images/"+ imagepath+ "\" width=\"100%\" /></body></html>";
webview.setInitialScale(30);
webview.loadDataWithBaseURL(null, html, "text/html", "UTF-8", null);
感謝@cutiko,但如何通過每個圖像的URL點擊到全屏活動和ImageView的或其他的WebView顯示呢? –
何!使用putExtra(「YOUR_KEY」,theUrl)將其添加到您的意圖中;然後通過getIntent()獲取它在另一個Activity中。getStringExtra(「YOUR_KEY」); – cutiko
以及如何將該網址或顯示在imageView? @cutiko –