我正在从URL中加载ImageView中的图像。 (来自RSS feed)
问题是加载图像的分辨率低于原始图像!!
我搜索了Stackoverflow,发现解决方案是将“inScaled”选项设置为false以防止图像重新缩放。 但是,这个解决方案对我不起作用。
以下是代码:
URL feedImage= new URL(img_link);
HttpURLConnection conn= (HttpURLConnection)feedImage.openConnection();
InputStream is = conn.getInputStream();
BitmapFactory.Options BFoptions = new BitmapFactory.Options();
BFoptions.inScaled = false;
Bitmap img = BitmapFactory.decodeStream(is,null, BFoptions);
int density = img.getDensity(); Log.e("img", "Image density is " + density);
int width =img.getWidth(); Log.e("img", "Image width is " + width);
int height = img.getHeight(); Log.e("img", "Image height is " + height);
my_image.setImageBitmap(img);
变量密度,宽度和高度均低于原始图像的值。
这是我布局的一部分:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/joke_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="temp description"/>
<ScrollView
android:id="@+id/SV"
android:layout_width="fill_parent"
android:layout_height="30dp"
android:background="@drawable/background"
android:paddingTop="10dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingBottom="50dp">
<!-- bla
bla
bla
-->
</ScrollView>
</RelativeLayout>
提前致谢
答案 0 :(得分:0)
最后它解决了:)
它似乎与代码或ImageViews无关,.....
RSS Feed中的所有图片都是缩略图...这就是它们在应用中看起来很小但在网站上看起来很大的原因。
所以解决办法就是用“_n.jpg”替换每个图像网址末尾的“_s.jpg”:)
我希望这个答案可以帮助别人:)