Цвет градиента текста в пользовательском представлении - PullRequest
3 голосов
/ 18 марта 2019

У меня есть этот класс GradientTextView, который расширяет AppCompatTextView

public class GradientTextView extends android.support.v7.widget.AppCompatTextView {

public GradientTextView(Context context) {
    super(context);
}

public GradientTextView(Context context, AttributeSet attrs) {
    super(context, attrs);
}

public GradientTextView(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
}

@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
    super.onLayout(changed, left, top, right, bottom);

    //Setting the gradient if layout is changed
    if (changed) {
        getPaint().setShader(new LinearGradient(0, 0, getWidth(), getHeight(),
                ContextCompat.getColor(getContext(), R.color.colorStart),//Red Color
                ContextCompat.getColor(getContext(), R.color.colorEnd),// Blue Color
                Shader.TileMode.CLAMP));
    }
}

}

и вот текст градиента в формате XML

<package.GradientTextView
        android:id="@+id/textLogin"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Login."
        android:textStyle="bold"
        android:padding="4dp"
        android:layout_marginStart="8dp"/>

Прямо сейчас у меня есть текстовое представление с красным и синим градиентом. Я хотел бы изменить цвет градиента динамически.

Какой лучший способ изменить цвет программно?

После ответа @Nicola Gallazzi я обновляю свой вопрос. Теперь новый файл GradientTextView -

public class GradientTextView extends android.support.v7.widget.AppCompatTextView {


int colorStart = ContextCompat.getColor(getContext(), R.color.colorStart);
int colorEnd = ContextCompat.getColor(getContext(), R.color.colorEnd);

public GradientTextView(Context context) {
    super(context);
}

public GradientTextView(Context context, AttributeSet attrs) {
    super(context, attrs);
}

public GradientTextView(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
}

@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
    super.onLayout(changed, left, top, right, bottom);
    //Setting the gradient if layout is changed
    if (changed) {
        getPaint().setShader(new LinearGradient(0, 0, getWidth(), getHeight(), colorStart, colorEnd,
                Shader.TileMode.CLAMP));
    }
}

public void setGradientColors(int colorStart, int colorEnd) {
    this.colorStart = colorStart;
    this.colorEnd = colorEnd;
    // this forces view redrawing
    invalidate();
}

}

но есть новая проблема, которая заключается в том, что когда я использую это в действии, как @Nicola Gallazzi, показывает ошибку.

CODE

        textView.setGradientColors(ContextCompat.getColor(this,R.color.ncolorEnd, R.color.ncolorStart));

ERROR

Here you can find the error which

Ответы [ 2 ]

2 голосов
/ 18 марта 2019

Вы должны определить свои colorStart и colorEnd как переменные экземпляра вашего GradientTextView класса. Затем определите метод public в классе для программной установки colorStart и colorEnd:

public class GradientTextView extends android.support.v7.widget.AppCompatTextView {

    private int colorStart = ContextCompat.getColor(getContext(), R.color.colorPrimary);
    private int colorEnd = ContextCompat.getColor(getContext(), R.color.colorAccent);


    public GradientTextView(Context context) {
        super(context);
    }

    public GradientTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public GradientTextView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
    }

    @Override
    protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
        super.onLayout(changed, left, top, right, bottom);
        //Setting the gradient if layout is changed
        if (changed) {
            getPaint().setShader(new LinearGradient(0, 0, getWidth(), getHeight(), colorStart, colorEnd,
                    Shader.TileMode.CLAMP));
        }
    }

    public void setGradientColors(int colorStart, int colorEnd) {
        this.colorStart = colorStart;
        this.colorEnd = colorEnd;
        // this forces view redrawing
        invalidate();
    }

}

image

0 голосов
/ 18 марта 2019

Вы можете просто создать градиент, который можно нарисовать из кода Java, как показано ниже:

GradientDrawable drawable = new GradientDrawable();
drawable.setStroke(width, Color.RED);
drawable.setCornerRadius(8);
drawable.setColor(ContextCompat.getColor(context,R.color.colorRed));

И установить объект рисования для просмотра изображений, как показано ниже

    imageView.setBackgroundDrawable(drawable);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...