Android 自定义View的使用介绍
在项目开发中,可能系统自带的一些widget不能满足我们的需求,这时就需要自定义view。
通过查看系统中的常用widget如button,textview,edittext,他们都继承自view,所以我们在继承自定义view的时候也自然的需要继承view。
1、首先新建一个类lview继承自view
public class lview extends view {
private paint paint;
public lview(context context) {
super(context);
}
public lview(context context, attributeset attrs) {
super(context, attrs);
}
@override
protected void ondraw(canvas canvas) {
super.ondraw(canvas);
paint = new paint();// new一个画笔
paint.setcolor(color.red);// 设置画笔颜色
paint.setstyle(style.fill);// 设置画笔填充
canvas.drawcircle(50, 50, 40, paint);// 用画笔在画布上添加一个圆,不只可以添加圆,还可以添加矩形等!
paint.setcolor(color.yellow);// 设置画笔颜色
canvas.drawtext("lview", 50, 50, paint);// 用画笔在画布上添加文字,中间两个参数对应的是坐标。
}
}
2、在layout文件中进行配置
<button
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<com.androidstudy.lview
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
运行程序,可以看到如下画面:
推荐阅读
-
Android 有道词典的简单实现方法介绍
-
Android 自定义View的使用介绍
-
基于Android AppWidgetProvider的使用介绍
-
CorelDRAW中手绘工具的使用方法和操作技巧介绍
-
如何在CorelDRAW中使用渐变填充对象 渐变填充的操作方法和应用技巧介绍
-
iOS App开发中使用及自定义UITableViewCell的教程
-
Android编程使用Fragment界面向下跳转并一级级返回的实现方法
-
如何使用CorelDRAW为对象填充图案 图案填充的操作方法和应用技巧介绍
-
php中的路径问题与set_include_path使用介绍
-
Android使用AlertDialog实现的信息列表单选、多选对话框功能