app/src/main/java/safeluck/drive/evaluation/customview/ArrowView.java
@@ -11,6 +11,7 @@
import android.util.TypedValue;
import android.view.View;
import androidx.annotation.ColorRes;
import androidx.annotation.Nullable;
import safeluck.drive.evaluation.R;
@@ -44,6 +45,7 @@
        super(context, attrs, defStyleAttr);
        TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.ArrowView,defStyleAttr,0);
        text = a.getString(R.styleable.ArrowView_text);
        color = a.getColor(R.styleable.ArrowView_color,Color.parseColor("#99C3D1"));
        a.recycle();
    }
@@ -76,4 +78,8 @@
        }
        return keys;
    }
    public void setColor( int mColor){
        this.color = mColor;
    }
}