Android项目中bug备忘录

2017-10-11  本文已影响18人  dfqin

记录一些开发过程中遇到的bug,持续维护中:

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:src="@drawable/test"
            android:scaleType="fitXY"
            />

这里android:adjustViewBounds可以保证它的横宽比。

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {  
     webView.getSettings().setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW);  
} 

http://blog.csdn.net/luofen521/article/details/51783914

上一篇 下一篇

猜你喜欢

热点阅读