充电桩app代码

SaundProgressIndicator.java 611B

    package com.electric.chargingpile.view; /** * Created by demon on 2017/5/18. */ import android.content.Context; import android.util.AttributeSet; import android.widget.TextView; public class SaundProgressIndicator extends TextView { public SaundProgressIndicator(Context context) { this(context, null); } public SaundProgressIndicator(Context context, AttributeSet attrs) { this(context, attrs, 0); } public SaundProgressIndicator(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } }