我使用Android-Query將圖像加載到webview中,因此我可以使用該特定視圖附帶的縮放功能。Android查詢可縮放Web圖像 - 適合查看
現在,我加載的圖像比它們寬,因此,在我的佈局,正在裁剪(無法看到圖像的底部)。
是否有反正我可以改變我的代碼強制加載的圖像縮放以適應視圖?該文件說...
除了ImageView,WebView可用於顯示圖像 與Android構建在WebView的縮放支持。圖片將以 爲中心,並填充webview的寬度或高度,具體取決於它的 方向。
所以我想我可能會不走運?下面是加載圖像的代碼中的相關行...
aq.id(R.id.webview).progress(R.id.progressbar).webImage(imageUrl);
而這裏的layouyt ..
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<ProgressBar
android:id="@+id/progressbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true" />
</RelativeLayout>