转载地址

大家好我们今天的教程是在Android教程中自定义View的学习,对于初学着来说,他们习惯了Android传统的页面布局方式,如下代码:

[java] view plain copy
  1. <?xmlversion="1.0"encoding="utf-8"?>
  2. <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. >
  7. <TextView
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:text="@string/hello"
  11. />
  12. </LinearLayout>

当然上面的布局方式可以帮助我们完成简单应用的开发了,但是如果你想写一个复杂的应用,这样就有点牵强了,大家不信可以下源码都研究看看,高手写的布局方式,如上面的布局高手通常是这样写的:

[java] view plain copy
  1. <?xmlversion="1.0"encoding="utf-8"?>
  2. <A>
  3. <B></B>
  4. </A>

[java] view plain copy
  1. 其中AextendsLinerLayout,BextendsTextView.

为了帮助大家更容易理解,我写了一个简单的Demo,具体步骤如下:

首先新建一个Android工程 命名为ViewDemo.

然后自定义一个View类,命名为MyView(extends View).代码如下:

[java] view plain copy
  1. packagecom.android.tutor;
  2. importandroid.content.Context;
  3. importandroid.graphics.Canvas;
  4. importandroid.graphics.Color;
  5. importandroid.graphics.Paint;
  6. importandroid.graphics.Rect;
  7. importandroid.graphics.Paint.Style;
  8. importandroid.util.AttributeSet;
  9. importandroid.view.View;
  10. publicclassMyViewextendsView{
  11. privatePaintmPaint;
  12. privateContextmContext;
  13. privatestaticfinalStringmString="WelcometoMrWei'sblog";
  14. publicMyView(Contextcontext){
  15. super(context);
  16. }
  17. publicMyView(Contextcontext,AttributeSetattr)
  18. {
  19. super(context,attr);
  20. }
  21. @Override
  22. protectedvoidonDraw(Canvascanvas){
  23. //TODOAuto-generatedmethodstub
  24. super.onDraw(canvas);
  25. mPaint=newPaint();
  26. //设置画笔颜色
  27. mPaint.setColor(Color.RED);
  28. //设置填充
  29. mPaint.setStyle(Style.FILL);
  30. //画一个矩形,前俩个是矩形左上角坐标,后面俩个是右下角坐标
  31. canvas.drawRect(newRect(10,10,100,100),mPaint);
  32. mPaint.setColor(Color.BLUE);
  33. //绘制文字
  34. canvas.drawText(mString,10,110,mPaint);
  35. }
  36. }

然后将我们自定义的View加入到main.xml布局文件中,代码如下:

[java] view plain copy
  1. <?xmlversion="1.0"encoding="utf-8"?>
  2. <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. >
  7. <TextView
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:text="@string/hello"
  11. />
  12. <com.android.tutor.MyView
  13. android:layout_width="fill_parent"
  14. android:layout_height="fill_parent"
  15. />
  16. </LinearLayout>

最后执行之,效果如下图:


该实例经本人测试,结果如上所述。


更多相关文章

  1. 没有一行代码,「2020 新冠肺炎记忆」这个项目却登上了 GitHub 中
  2. Android:SqliteDatabase 数据库的简单使用
  3. WindowManager与窗口管理机制
  4. Android模仿微信加号菜单模式
  5. Android中如何通过程序打开或关闭GPS
  6. 小猪浅谈Android屏幕适配
  7. Android(OPhone) 学习笔记 - 记事本实例
  8. Android适配解决方案
  9. Android(安卓)带你玩转实现游戏2048 其实2048只是个普通的控件

随机推荐

  1. Android的Appwidget TextView中没有更新(
  2. [Android] QT on Android之android-light
  3. Android uses-feature
  4. Android-Skillful-Craftsman(Android能工
  5. android中checkbox自定义样式
  6. Testing your Xamarin app on Android de
  7. Android UI(二)DridView的菜单
  8. android触屏移动
  9. Android(安卓)Process 详解
  10. android xml