概述
首先,新建xml文件,resource type为drawble,root element为shape
一、自定义画线
android:shape="line" >
android:color="#33ccff" //颜色
android:dashWidth="2dp" //虚线的线段长度
android:dashGap="5dp"/> //虚线的间隔长度
布局xml文件中可以使用textview控件,设置背景属性
二、自定义画圆
android:shape="oval" >
android:height="50dp"/>
布局xml文件中使用p_w_picpathview控件
三、自定义画矩形
android:shape="rectangle" >
android:angle="45" //渐变角度 45的整数倍
android:centerColor="#00ff00" //渐变颜色
android:endColor="#0000ff"
android:startColor="#ff0000" />
//纯色
android:height="100dp"
android:width="50dp" />
//圆角
四、使用自定义字体
把字体格式文件.ttf,拷贝到assets目录下,读取字体文件Typeface.createFromAsset,设置类型setTypeface
代码中使用字体如下:TextView textView = (TextView) findViewById(R.id.textView2);
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/samplefont.ttf");//读取字体
textView.setTypeface(tf);//设置字体
最后
以上就是欢呼黑裤为你收集整理的android自动画线,android中实现自定义画线,画圆,画矩形,使用自定义字体的全部内容,希望文章能够帮你解决android自动画线,android中实现自定义画线,画圆,画矩形,使用自定义字体所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复