Java tutorial
/* * Copyright (C) 2013 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.kenmeidearu.materialdatetimepicker.date; import android.content.Context; import android.content.res.ColorStateList; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.Paint.Align; import android.graphics.Paint.Style; import android.support.annotation.NonNull; import android.support.v4.content.ContextCompat; import android.util.AttributeSet; import android.widget.TextView; import com.kenmeidearu.materialdatetimepicker.R; /** * A text view which, when pressed or activated, displays a colored circle around the text. */ public class TextViewWithCircularIndicator extends TextView { private static final int SELECTED_CIRCLE_ALPHA = 255; Paint mCirclePaint = new Paint(); private int mCircleColor; private final String mItemIsSelectedText; private boolean mDrawCircle; public TextViewWithCircularIndicator(Context context, AttributeSet attrs) { super(context, attrs); mCircleColor = ContextCompat.getColor(context, R.color.mdtp_accent_color); mItemIsSelectedText = context.getResources().getString(R.string.mdtp_item_is_selected); init(); } private void init() { mCirclePaint.setFakeBoldText(true); mCirclePaint.setAntiAlias(true); mCirclePaint.setColor(mCircleColor); mCirclePaint.setTextAlign(Align.CENTER); mCirclePaint.setStyle(Style.FILL); mCirclePaint.setAlpha(SELECTED_CIRCLE_ALPHA); } public void setAccentColor(int color, boolean darkMode) { mCircleColor = color; mCirclePaint.setColor(mCircleColor); setTextColor(createTextColor(color, darkMode)); } /** * Programmatically set the color state list (see mdtp_date_picker_year_selector) * @param accentColor pressed state text color * @param darkMode current theme mode * @return ColorStateList with pressed state */ private ColorStateList createTextColor(int accentColor, boolean darkMode) { int[][] states = new int[][] { new int[] { android.R.attr.state_pressed }, // pressed new int[] { android.R.attr.state_selected }, // selected new int[] {} }; int[] colors = new int[] { accentColor, Color.WHITE, darkMode ? Color.WHITE : Color.BLACK }; return new ColorStateList(states, colors); } public void drawIndicator(boolean drawCircle) { mDrawCircle = drawCircle; } @Override public void onDraw(@NonNull Canvas canvas) { if (mDrawCircle) { final int width = getWidth(); final int height = getHeight(); int radius = Math.min(width, height) / 2; canvas.drawCircle(width / 2, height / 2, radius, mCirclePaint); } setSelected(mDrawCircle); super.onDraw(canvas); } @Override public CharSequence getContentDescription() { CharSequence itemText = getText(); if (mDrawCircle) { return String.format(mItemIsSelectedText, itemText); } else { return itemText; } } }