android 加载外部矢量图SVG

转自:http://blog.csdn.net/jiabailong/article/details/53736689

android加载矢量图的方式主要有以下两种:

一、Web方式

利用WebVIew来浏览SVG

[html] view plain copy
print ?
  1. <html>  
  2.   
  3. <embed src=“a.svg” width=“300” height=“300” type=“image/svg+xml” />  
  4. html>  



二、本地加载,使用ImageView来展示

[java] view plain copy
print ?
  1. final URL url = new URL(“http://localhost:8080/commons/m.svg”);  
  2. HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();  
  3. InputStream inputStream = urlConnection.getInputStream();  
  4. SVG svg = SVGParser. getSVGFromInputStream(inputStream);  
  5. Drawable drawable = svg.createPictureDrawable();  
            final URL url = new URL("http://localhost:8080/commons/m.svg");
            HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
            InputStream inputStream = urlConnection.getInputStream();
            SVG svg = SVGParser. getSVGFromInputStream(inputStream);
            Drawable drawable = svg.createPictureDrawable();
         

本地加载可以借助外部库利用glide( https://github.com/bumptech/glide/tree/v3.6.0)

你可能感兴趣的:(矢量图,SVG,android)