Android xml 中绘制图形


    
    

布局xml文件中使用imageview控件

(2)绘制直线


      //虚线的间隔长度

(3)绘制矩形


    
       //纯色
    
      //圆角

(4)使用自定义字体

TextView textView = (TextView) findViewById(R.id.textView2);
Typeface tf = Typeface.createFromAsset(getAssets(), 
"fonts/samplefont.ttf");
//读取****字体****textView.setTypeface(tf);//设置****字体****

把****字体****格式文件.ttf,拷贝到assets目录下,读取****字体****文件Typeface.createFromAsset,设置类型setTypeface

转自http://webcache.googleusercontent.com/search?q=cache:eyY6eiAW9DkJ:wei.l.o.v.e.blog.163.com/blog/static/1162853472014339167799/+&cd=1&hl=zh-CN&ct=clnk&gl=cn

你可能感兴趣的:(Android xml 中绘制图形)