Android自定義View畫圓功能
本文實(shí)例為大家分享了Android自定義View畫圓的具體代碼,供大家參考,具體內(nèi)容如下
引入布局
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="com.bwie.test.xuejian1508a20170928.MainActivity"> <com.bwie.test.xuejian1508a20170928.ViView android:layout_width="match_parent" android:layout_height="match_parent" /> </RelativeLayout>
自定義View的java類,繼承View
public class ViView extends View{ Paint paint; Context context; //構(gòu)造方法 public ViView(Context context) { super(context); } public ViView(Context context, AttributeSet attrs) { super(context, attrs); } public ViView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); } public ViView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { super(context, attrs, defStyleAttr, defStyleRes); this.context=context; } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); } @Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) { super.onLayout(changed, left, top, right, bottom); } /*繪圖*/ @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); //得到屏幕寬高 int width = getWidth(); int radius = width - 450/2; int height = getHeight(); // 創(chuàng)建畫筆 Paint paint1 = new Paint(); Paint paint2 = new Paint(); Paint paint3= new Paint(); // 消除鋸齒 paint1.setAntiAlias(true); paint2.setAntiAlias(true); paint3.setAntiAlias(true); //畫筆顏色 paint1.setColor(Color.RED); paint2.setColor(Color.WHITE); paint3.setColor(Color.BLUE); // 畫圓。確定位置 // canvas.drawRect(100,100,width/2,height/2,paint1); // canvas.drawCircle(100,100,100,paint1); // canvas.drawCircle(250,250,200,paint2); // canvas.drawCircle(500,500,300,paint3); //設(shè)置圓環(huán)形狀和大小 RectF oval = new RectF(width-radius,width-radius,width+radius,width+radius); paint1.setStrokeWidth(450); canvas.drawArc(oval,-90,90,false,paint1); canvas.drawCircle(width/2,height/2,450,paint1); canvas.drawCircle(width/2,height/2,300,paint2); canvas.drawCircle(width/2,height/2,200,paint3); } @Override public boolean onTouchEvent(MotionEvent event) { return super.onTouchEvent(event); } }
效果圖:
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Android 中按home鍵和跳轉(zhuǎn)到主界面的實(shí)例代碼
本文通過實(shí)例代碼給大家分享Android 中按home鍵和跳轉(zhuǎn)到主界面的方法,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友參考下吧2017-04-04android實(shí)現(xiàn)ViewPager的Indicator的實(shí)例代碼
本篇文章主要介紹了android實(shí)現(xiàn)ViewPager的Indicator的實(shí)例代碼,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2017-02-02android自定義控件ImageView實(shí)現(xiàn)圓形圖片
這篇文章主要為大家詳細(xì)介紹了android自定義控件ImageView實(shí)現(xiàn)圓形圖片,適用于用戶頭像,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-12-12Android登錄注冊(cè)功能 數(shù)據(jù)庫SQLite驗(yàn)證
這篇文章主要為大家詳細(xì)介紹了Android登錄注冊(cè)功能,數(shù)據(jù)庫SQLite驗(yàn)證,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-10-10Android Selector 按下修改背景和文本顏色的實(shí)現(xiàn)代碼
這篇文章主要介紹了Android Selector 按下修改背景和文本顏色的實(shí)現(xiàn)代碼,本文通過實(shí)例代碼和demo展示給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-11-11Android中實(shí)現(xiàn)EditText密碼顯示隱藏的方法
這篇文章主要介紹了Android中實(shí)現(xiàn)EditText密碼顯示隱藏的方法,需要的朋友可以參考下2017-01-01Android判斷當(dāng)前棧頂Activity的包名代碼示例
這篇文章主要介紹了Android判斷當(dāng)前棧頂Activity的包名代碼示例,分享了相關(guān)代碼,小編覺得還是挺不錯(cuò)的,具有一定借鑒價(jià)值,需要的朋友可以參考下2018-02-02