解决scrollview嵌套ImageView时,出现除顶部和底部黑块的问题

最近一个 项目 中,从网上下载一个图片,然后展示给 用户 看,那个图片本来是iphone里的,拿到android上来,一拉伸就出问题了,scrollview的顶部和底部出现了奇怪的黑块,如图:
在网上找了很资料都没解决,后来在一个外国 网站 找到结果,分享一下。
代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android. com /apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="http://archive.cnblogs.com/a/2345498/@drawable/demo" rel=" nofollow "/> android:adjustViewBounds="true"
android:scaleType="centerInside"></ImageView>
</ScrollView>
</LinearLayout>
android:adjustViewBounds="true"这句很关键

你可能感兴趣的:(android,用户,图片)