2

にいくつかの画像を追加すると、画像は予想から90度WebView回転します。 これは、Samsungカメラが.jpg写真+EXIF回転タグで撮影するためです。 同じ画像がギャラリーでは正常に表示されますが、私のでは表示されません。

WebView

String htmlWithImages = "<html> <some html>";
htmlWithImages += imageUri; // Image's content uri like content://
mWebView.loadDataWithBaseURL("", htmlWithImages, "text/html", "utf-8", "");  

これはバグWebViewですか?回避策はありますか?

4

1 に答える 1

2

たぶん、css3を使用してWebView内の画像を回転させることができます:http://bavotasan.com/2011/rotated-images-with-css3/またはhttp://www.kavoir.com/2009/08/css-rotate- text-image-elements-by-90-180-or-270-degrees.html

-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
于 2012-08-27T07:37:56.527 に答える