应无所住,而生其心
排名
1
文章
860
粉丝
112
评论
163
net core webapi post传递参数
庸人 : 确实坑哈,我也是下班好了好几次,发现后台传递对象是可以的,但...
百度编辑器自定义模板
庸人 : 我建议换个编辑器,因为现在百度富文本已经停止维护了,用tinymec...
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术

android 绘制自定义控件,android绘制同心圆,android绘制小三角,android画虚线

4937人阅读 2015/6/20 21:38 总访问:5194332 评论:0 收藏:0 手机
分类: 移动开发

一:实现同心圆加小三角指向效果


同心圆

  1. public class RingView extends View{
  2. private Paint paint;
  3. private Context context;
  4. private int radius;//半径
  5. private int color;//颜色值
  6. public RingView(Context context) {
  7. // TODO Auto-generated constructor stub
  8. this(context, null);
  9. }
  10. public RingView(Context context, AttributeSet attrs) {
  11. super(context, attrs);
  12. // TODO Auto-generated constructor stub
  13. this.context = context;
  14. this.paint = new Paint();
  15. this.paint.setAntiAlias(true); //消除锯齿
  16. }
  17. @Override
  18. protected void onDraw(Canvas canvas) {
  19. // TODO Auto-generated method stub
  20. int center = getWidth()/2;
  21. //绘制内圆
  22. paint.setStyle(Paint.Style.FILL);
  23. paint.setColor(Color.parseColor("#91d439"));
  24. canvas.drawCircle(center,center, 22, this.paint);
  25. //绘制外圆(空心)
  26. paint.setStyle(Paint.Style.STROKE);
  27. paint.setColor(Color.parseColor("#91d439"));
  28. paint.setStrokeWidth(6);
  29. canvas.drawCircle(center,center, 30, this.paint);
  30. super.onDraw(canvas);
  31. }
  32. public int getRadius() {
  33. return radius;
  34. }
  35. public void setRadius(int radius) {
  36. this.radius = radius;
  37. }
  38. public int getColor() {
  39. return color;
  40. }
  41. public void setColor(int color) {
  42. this.color = color;
  43. }
  44. }

这里的getWidth可以根据控件设置的宽度来得到


小三角

  1. public class mytriangle extends View{
  2. private Paint paint;
  3. private Context context;
  4. private int radius;//半径
  5. private int color;//颜色值
  6. public mytriangle(Context context) {
  7. // TODO Auto-generated constructor stub
  8. this(context, null);
  9. }
  10. public mytriangle(Context context, AttributeSet attrs) {
  11. super(context, attrs);
  12. // TODO Auto-generated constructor stub
  13. this.context = context;
  14. this.paint = new Paint();
  15. this.paint.setAntiAlias(true); //消除锯齿
  16. }
  17. @Override
  18. protected void onDraw(Canvas canvas) {
  19. float x= getX();//得到控件的所在位置
  20. float y= getX();
  21. paint.setStyle(Paint.Style.FILL);
  22. paint.setColor(Color.parseColor("#b9dc8c"));
  23. // canvas.drawText("画三角形:", 10, 200, paint);
  24. // 绘制这个三角形,你可以绘制任意多边形
  25. Path path = new Path();
  26. // y=(float) (y+15.5);
  27. path.moveTo(Dp2Px(context,x+10),Dp2Px(context,y));// 此点为多边形的起点
  28. path.lineTo(Dp2Px(context,x), Dp2Px(context,y+7));
  29. path.lineTo(Dp2Px(context,x+10), Dp2Px(context,y+14));
  30. path.close(); // 使这些点构成封闭的多边形
  31. canvas.drawPath(path,paint);
  32. super.onDraw(canvas);
  33. }
  34. public float Dp2Px(Context context, float dp) {
  35. final float scale = context.getResources().getDisplayMetrics().density;
  36. return (float) (dp * scale + 0.5f);
  37. }
  38. public int getRadius() {
  39. return radius;
  40. }
  41. public void setRadius(int radius) {
  42. this.radius = radius;
  43. }
  44. public int getColor() {
  45. return color;
  46. }
  47. public void setColor(int color) {
  48. this.color = color;
  49. }
  50. }

布局文件中使用用全类名访问就可以了,还可以设置自动义属性,
getx(),gety得到控件的所在的坐标位置

  1. int[] location = new int[2] ;
  2. getLocationOnScreen(location);//获取在整个屏幕内的绝对坐标包括通知栏
  3. System.out.println("OnScreen x:"+location[0]+" y:"+location[1]);

注意:不要以为获取到了这个位置设置下就可以让控件在具体的位置了,而是所在布局文件类型以,0,0开始,所有
不要去设置位置默认就在那个位置,设置了反而让控件不在本身正确的位置了

  1. <com.lc.mycontrol.RingView
  2. android:layout_width="100dp"
  3. android:layout_height="100dp"
  4. />

二:画虚线

xml布局:

  1. <com.lc.mycontrol.DashedLine
  2. android:id="@+id/dashedLine"
  3. android:layout_width="wrap_content"
  4. android:layout_marginLeft="50dp"
  5. android:layout_height="300dp"
  6. />

view

  1. public class DashedLine extends View{
  2. private final String namespace = "http://com.smartmap.driverbook";
  3. private float startX;
  4. private float startY;
  5. private float endX;
  6. private float endY;
  7. private Rect mRect;
  8. Context contextgb;
  9. public DashedLine(Context context, AttributeSet attrs) {
  10. super(context, attrs);
  11. contextgb = context;
  12. }
  13. @Override
  14. protected void onDraw(Canvas canvas) {
  15. int[] location = new int[2] ;
  16. //this.getLocationInWindow(location); //获取在当前窗口内的绝对坐标
  17. //System.out.println("InWindow x:"+location[0]+" y:"+location[1]);
  18. this.getLocationOnScreen(location);//获取在整个屏幕内的绝对坐标
  19. System.out.println("OnScreen x:"+location[0]+" y:"+location[1]);
  20. // TODO Auto-generated method stub
  21. super.onDraw(canvas);
  22. Paint paint = new Paint();
  23. paint.setStyle(Paint.Style.STROKE);
  24. paint.setColor(Color.WHITE);
  25. Path path = new Path();
  26. //location[0]获取到控件所在的x坐标,可以设置改控件位置
  27. path.moveTo(5, Dp2Px(contextgb,10));
  28. path.lineTo(5, Dp2Px(contextgb,56));
  29. PathEffect effects = new DashPathEffect(new float[]{2,2,2,2},2);
  30. paint.setPathEffect(effects);
  31. paint.setStrokeWidth((float) 1.5);
  32. canvas.drawPath(path, paint);
  33. }
  34. public float Dp2Px(Context context, float dp) {
  35. final float scale = context.getResources().getDisplayMetrics().density;
  36. return (float) (dp * scale + 0.5f);
  37. }
  38. }

欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)

评价

解决android studio运行出现Session 'app': Error Installing APKs错误

之前项目好好的,早上打开突然报错Session &#39;app&#39;: Error Installing APKs解决方法:选择Build———— clean proje...

android使用MPandroidChart开源图表折线图

1. 将mpandroidchartlibrary-2-1-6.ja包copy到项目的libs中在引用2:布局文件&lt;com.github.mikephil.charting.charts.Line...

android 弹出选择框简单通用弹出选择框

制作一个简单通用的弹出选择框LinearLayoutll=(LinearLayout)getActivity().findViewById(R.id.log_sel_qyport); ll.set...

android studio打包脱坑1

打包时出现的&#39;:app:validateExternalOverrideSigning&#39;问题报错如下解决方法错误的原因是找不到这个签名文件。由于K...

javaandroid 使用socket.io-client连接nodejs websocket

socket.io-client相比SocketIO.jar使用起来更方便一点publicvoidconnection(finalMapAction_action){ try{ IO.Optionsopt...

javaandroid 使用SocketIO.jar连接nodejs websocket

socket.io-client版连接nodejs websockethttp://www.tnblog.net/aojiancc2/article/details/2562一:更具url建立连接,调用...

Xamarin: android.permission.CALL_PHONE 的权限问题

写个电话拨号器,很简单就一个Edittext和一个button,用来输入号码并且点击按钮拨打电话,但是写好以后报的是安全错误,我上...

android 漂亮的listview

效果如下:首先在drawable下定义选择器shape_bg_listview.xml 实现圆角:&lt;?xmlversion=&quot;1.0&quot;encoding=&quot;...

android 获取导航栏的高度

获取Android手机屏幕的高度/** *获取状态栏高度 * *@paramcontext上下文 *@return高度 */publicstaticintgetStatusBar...

android 代码

一、判断WiFi是否打开1、注册权限//需注册权限android.permission.ACCESS_WIFI_STATE WifiManagerwifiManager=(WifiManage...

ionic cordova platform add android报错

ionic各种环境以及配置完但是添加平台报错:Using cordova-fetch for anroidFailed to fetch platform anroidProbably this...

android 布局文件里输入框的值自动转换到类里边可以增加为空验证

android 布局文件里输入框的值自动转换到类里边,不用一个一个去读取在赋值先看看android遍历view子控件,用回调函数 /** ...

android 布局实例解析 格子菜单效果

使用android权重布局,使每个格子和间隔在不同手机中自动适配: &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8...

android后台动态添加布局文件、控件与动态设置属性

翻译布局文件布局文件 &lt;LinearLayout android:layout_width=&quot;fill_parent&quot; andro...

android后台动态添加布局文件、控件与动态设置属性2

原布局文件 &lt;ScrollView android:layout_width=&quot;wrap_content&quot; android:layout_heig...