国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > Android > 正文

Android空心圓及層疊效果實(shí)現(xiàn)代碼

2019-10-22 18:26:45
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

本文實(shí)例為大家分享了Android空心圓及層疊效果的具體代碼,供大家參考,具體內(nèi)容如下

package com.bwei.test.zidingyiview2;import android.content.Context;import android.graphics.Canvas;import android.graphics.Color;import android.graphics.Paint;import android.util.AttributeSet;import android.view.View;public class MyView extends View { private Context mcontext; private Paint mpaint; public MyView(Context context) {  super(context); } public MyView(Context context, AttributeSet attrs) {  super(context, attrs); } public MyView(Context context, AttributeSet attrs, int defStyleAttr) {  super(context, attrs, defStyleAttr);  this.mcontext = context; } @Override protected void onDraw(Canvas canvas) {  super.onDraw(canvas);//  得到屏幕寬高  float wi = canvas.getWidth() / 2;  float he = canvas.getHeight() / 2;//  創(chuàng)建第一個(gè)畫(huà)筆  Paint pa = new Paint();//  上色  pa.setColor(Color.GREEN);//  顯示圓邊  pa.setAntiAlias(true);//  設(shè)置空心圓環(huán)  pa.setStyle(Paint.Style.STROKE);//  設(shè)置圓環(huán)寬度  pa.setStrokeWidth(6);  Paint pa2 = new Paint();  pa2.setColor(Color.BLUE);  pa2.setAntiAlias(true);  Paint pa3 = new Paint();  pa3.setColor(Color.BLACK);  pa3.setAntiAlias(true);//  畫(huà)什么圓  canvas.drawCircle(wi-85, he-85, 80, pa2);  canvas.drawCircle(wi, he, 100, pa);  canvas.drawCircle(wi+110, he+110, 120, pa3); }}
<?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.bwei.test.zidingyiview2.MainActivity"> <com.bwei.test.zidingyiview2.MyView  android:layout_width="wrap_content"  android:layout_height="wrap_content"/></RelativeLayout>

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持VEVB武林網(wǎng)。


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到Android開(kāi)發(fā)頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 子长县| 民县| 阿拉尔市| 兴仁县| 法库县| 漯河市| 白玉县| 荥阳市| 历史| 丹江口市| 无锡市| 石棉县| 铜山县| 缙云县| 高安市| 沐川县| 江永县| 乐至县| 甘洛县| 岳池县| 临朐县| 高要市| 西平县| 安福县| 九台市| 娱乐| 宝山区| 六枝特区| 南部县| 应用必备| 堆龙德庆县| 扬中市| 红安县| 青铜峡市| 阆中市| 灵武市| 万盛区| 铜梁县| 富锦市| 荆州市| 黑龙江省|