关于android:Android高手进阶教程三之Android-中自定义View的应用

9次阅读

共计 2077 个字符,预计需要花费 6 分钟才能阅读完成。

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

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout\_width="fill\_parent" android:layout\_height="fill\_parent" > <TextView android:layout\_width="fill\_parent" android:layout\_height="wrap\_content" android:text="@string/hello" /> </LinearLayout>

当然下面的布局形式能够帮忙咱们实现简略利用的开发了,然而如果你想写一个简单的利用,这样就有点牵强了,大家不信能够下源码都钻研看看,高手写的布局形式,如下面的布局高手通常是这样写的:

<?xml version="1.0" encoding="utf-8"?> <A> <B></B> </A>
其中 A extends LinerLayout, B extends TextView.

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

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

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

package com.android.tutor; import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.Rect; import android.graphics.Paint.Style; import android.util.AttributeSet; import android.view.View; public class MyView extends View {private Paint mPaint; private Context mContext; private static final String mString = "Welcome to Mr Wei's blog"; public MyView(Context context) {super(context); } public MyView(Context context,AttributeSet attr) {super(context,attr); } @Override protected void onDraw(Canvas canvas) {// TODO Auto-generated method stub super.onDraw(canvas); mPaint = new Paint(); // 设置画笔色彩 mPaint.setColor(Color.RED); // 设置填充 mPaint.setStyle(Style.FILL); // 画一个矩形, 前俩个是矩形左上角坐标,前面俩个是右下角坐标 canvas.drawRect(new Rect(10, 10, 100, 100), mPaint); mPaint.setColor(Color.BLUE); // 绘制文字 canvas.drawText(mString, 10, 110, mPaint); } }

而后将咱们自定义的 View 退出到 main.xml 布局文件中, 代码如下:

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout\_width="fill\_parent" android:layout\_height="fill\_parent" > <TextView android:layout\_width="fill\_parent" android:layout\_height="wrap\_content" android:text="@string/hello" /> <com.android.tutor.MyView android:layout\_width="fill\_parent" android:layout\_height="fill\_parent" /> </LinearLayout>

最初执行之,成果如下图:

OK, 功败垂成,这篇文章就到此结束了。

上面是咱们的一个 Android 零根底系列教程,有趣味的小伙伴们能够去看看:
[Android 零根底课程教学]

正文完
 0