解决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="@drawable/demo"
     android:adjustViewBounds="true"
    android:scaleType="centerInside"></ImageView>
    </ScrollView>
</LinearLayout>

android:adjustViewBounds="true"这句很关键

奉送美女图片一张:/Files/ProgramBull/demo.jpg

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM