Android custom View

Source: Internet
Author: User

Android custom view is mycustomview. Drew a rect in mycustomview,

The color is green, and a red text.

public class MyCustomView extends View{ private Paint mPaint;       private Context mContext;       private static final String mString = "Hello world!";  public MyCustomView(Context context) {super(context);// TODO Auto-generated constructor stub}public MyCustomView(Context context, AttributeSet attr) {super(context,attr);// TODO Auto-generated constructor stub} @Override       protected void onDraw(Canvas canvas) {           // TODO Auto-generated method stub           super.onDraw(canvas);                      mPaint = new Paint();                    mPaint.setColor(Color.GREEN);         mPaint.setStyle(Style.FILL);                  canvas.drawRect(new Rect(10, 10, 300, 500), mPaint);                      mPaint.setColor(Color.RED);           canvas.drawText(mString, 50, 550, mPaint);  }}

Add the custom view to layout of activity_main.

<?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_world"          />     <com.example.customview.MyCustomView        android:layout_width="fill_parent"       android:layout_height="fill_parent"       />    </LinearLayout>

Reference

<Com. example. customview. mycustomview/> in layout is used for the custom control.

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.