首页 > 代码库 > View的使用和学习(二)

View的使用和学习(二)

参考文章

http://blog.csdn.net/guolin_blog/article/details/16330267

 

在这里学到了什么/

 

1 绘制过程  

测定View的大小 -> 测定View的位置 -> 绘制View 

以上都要根据父View作不同的操作

绘制View的话,主要是onDraw()方法。

 

2自定义一个View

public class MyView extends View {

private Paint mPaint;

public MyView(Context context, AttributeSet attrs) {
super(context, attrs);
mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
}

@Override
protected void onDraw(Canvas canvas) {
mPaint.setColor(Color.YELLOW);
canvas.drawRect(0, 0, getWidth(), getHeight(), mPaint);
mPaint.setColor(Color.BLUE);
mPaint.setTextSize(20);
String text = "Hello View";
canvas.drawText(text, 0, getHeight() / 2, mPaint);
}
}

 

使用这个View

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<com.example.viewtest.MyView
android:layout_width="200dp"
android:layout_height="100dp"
/>

</LinearLayout>

 

这样就可以用这个View啦。当然还有很多细节的知识没有细看。

以后继续看。

View的使用和学习(二)