Android – 自定義Loading圓點
網路等待Loading圖
剛開始做這種效果是用xml來畫圓形實心點的。
白色圓點
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
android:shape="oval" >
<corners android:radius="8dp"/>
<solid android:color="#fffdf8"/>
</shape>
灰色圓點
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
android:shape="oval" >
<corners android:radius="8dp"/>
<solid android:color="#7ffffdf8"/>
</shape>
Loading佈局檔案
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="60dp"
android:layout_height="50dp"
android:background="@drawable/toast_error_network_bg"
android:orientation="horizontal"
android:gravity="center">
<ImageView
android:id="@+id/iv_dot1"
android:layout_width="5dp"
android:layout_height="5dp"
android:background="@drawable/dot_unfocus"/>
<ImageView
android:id="@+id/iv_dot2"
android:layout_width="5dp"
android:layout_height="5dp"
android:layout_marginLeft="5dp"
android:background="@drawable/dot_unfocus"/>
<ImageView
android:id="@+id/iv_dot3"
android:layout_width="5dp"
android:layout_height="5dp"
android:layout_marginLeft="5dp"
android:background="@drawable/dot_unfocus"/>
</LinearLayout>
使用Timer來修改background
Timer mTimer = new Timer();
mHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
if(mPosition ==1) {
mIvDot1.setBackgroundResource(R.drawable.dot_focus);
mIvDot2.setBackgroundResource(R.drawable.dot_unfocus);
mIvDot3.setBackgroundResource(R.drawable.dot_unfocus);
mPosition = 2;
} else if(mPosition == 2) {
mIvDot1.setBackgroundResource(R.drawable.dot_unfocus);
mIvDot2.setBackgroundResource(R.drawable.dot_focus);
mIvDot3.setBackgroundResource(R.drawable.dot_unfocus);
mPosition = 3;
} else if(mPosition == 3) {
mIvDot1.setBackgroundResource(R.drawable.dot_unfocus);
mIvDot2.setBackgroundResource(R.drawable.dot_unfocus);
mIvDot3.setBackgroundResource(R.drawable.dot_focus);
mPosition = 1;
}
}
};
mTimer.schedule(new TimerTask() {
@Override
public void run() {
mHandler.sendEmptyMessage(0);
}
}, 0, 400);
這樣也是可以達到上面那種效果的,但是總感覺這麼寫不太符合程式設計師的風格。。。所以就有了下面的這種寫法。
public class LoadingPointView extends View {
public static final int MESSAGE_ID = 0;
//白色圓點
private Paint mWhitePaint;
//綠色圓點
private Paint mGreenPaint;
//半徑
private int mRadius;
//下一個被選中的圓點的index
private int mIndex;
private Handler mHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
++mIndex;
if (mIndex == 5) {
mIndex = 0;
}
postInvalidate();
}
};
public LoadingPointView(Context context) {
this(context, null);
}
public LoadingPointView(Context context, @Nullable AttributeSet attrs) {
this(context, attrs, 0);
}
public LoadingPointView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
initParmas(context);
}
private void initParmas(Context context) {
mWhitePaint = new Paint();
mWhitePaint.setAntiAlias(true);
mWhitePaint.setStyle(Paint.Style.FILL);
mWhitePaint.setColor(ContextCompat.getColor(context, R.color.white));
mGreenPaint = new Paint();
mGreenPaint.setAntiAlias(true);
mGreenPaint.setStyle(Paint.Style.FILL);
mGreenPaint.setColor(ContextCompat.getColor(context, R.color.c_3ec88e));
mPaintWidth = Px2DpUtil.dp2px(context, 2);
mCircleX = Px2DpUtil.dp2px(context, 40);
mCircleY = Px2DpUtil.dp2px(context, 40);
mRadius = Px2DpUtil.dp2px(context, 5);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
for (int i = 0; i < 5; i++) {
//修改圓心x軸座標,來畫出多個圓點
canvas.drawCircle(getHeight() / 2 + mRadius * i * 2 + 5 * i, getHeight() / 2, mRadius, mWhitePaint);
}
//動態修改綠色圓點的位置
canvas.drawCircle(getHeight() / 2 + mRadius * mIndex * 2 + 5 * mIndex, getHeight() / 2, mRadius, mGreenPaint);
//傳送訊息不斷繪製,以達到無限迴圈的效果
mHandler.sendEmptyMessageDelayed(MESSAGE_ID, 200);
}
//停止動畫
@Override
protected void onDetachedFromWindow() {
super.onDetachedFromWindow();
mHandler.removeMessages(MESSAGE_ID);
mHandler = null;
}
}
使用方法
<cn.custom.widget.widget.LoadingPointView
android:id="@+id/id_loading_point_view"
android:layout_width="60dp"
android:layout_height="10dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
/>
具體效果和實現就是以上這些內容了。有什麼問題可以評論。
快樂生活!快樂工作!快樂程式設計!
相關文章
- Android 自定義圓形頭像Android
- Android自定義圓形頭像Android
- Android自定義圓形進度條Android
- 自定義view————loading框View
- Android圓形圖片--自定義控制元件Android控制元件
- 自定義ImageView完成圓形頭像自定義View
- Android自定義圓形進度條原始碼解析Android原始碼
- Android進階:九、自定義View之手寫Loading動效AndroidView
- Android 自定義View 點贊效果AndroidView
- uni-app 自定義loading 自定義toast 相容小程式&APPAPPAST
- Android自定義設定圓形圖片控制元件Android控制元件
- Android自定義圓形進度條實現程式碼Android
- 自定義圓形進度條
- Android進階 自定義View(三)圓形刻度進度條AndroidView
- Android自定義View之定點寫文字AndroidView
- Android鬼點子-自定義View就像PSAndroidView
- Android技術分享|【自定義View】實現Material Design的Loading效果AndroidViewMaterial Design
- Android自定義View之圖片外形特效——輕鬆實現圓角和圓形圖片AndroidView特效
- 自定義檢視---圓角柱狀圖(一)
- 自定義頭像圓角控制元件控制元件
- 自定義圓形ImageView(仿QQ頭像)View
- 自定義drawable實現圓角圖片
- 自定義view實現圓角圖片View
- 【Android開發點滴】自定義Toast樣式AndroidAST
- Android自定義View——從零開始實現圓形進度條AndroidView
- Android 自定義viewAndroidView
- Android 自定義 TabLayoutAndroidTabLayout
- Android: 自定義ViewAndroidView
- Android自定義ToastAndroidAST
- Android 自定義 DrawableAndroid
- android自定義view(自定義數字鍵盤)AndroidView
- android自定義View&自定義ViewGroup(下)AndroidView
- android自定義View&自定義ViewGroup(上)AndroidView
- Android自定義控制元件——自定義屬性Android控制元件
- Android自定義控制元件系列之圓形進度條的實現Android控制元件
- 自定義圓形進度條控制元件控制元件
- 通過xml檔案實現自定義圓角按鈕,以及點選效果XML
- android自定義鍵盤 自定義身份證鍵盤Android