繁体   English   中英

Android-如何使用Google表格等动画更改EditText线条的颜色?

[英]Android - How to change EditText line color with animation like Google Forms?

我正在尝试实现类似于Google表格的动画,如下图所示: 在此处输入图片说明

EditText的底行应从中心开始用填充动画更改颜色。 这可能很容易,但我是android的新手,但没有找到任何在线资源来解决此问题。 谁能给我一个小提示或提供一些有关如何执行此操作的教程的链接?

我认为谷歌用ViewAnimationUtils.createCircularReveal

这是我实现此效果的方式(请注意,它适用于api 21及更高版本)

另请注意,我使用接触点以获得更好的用户体验

因此,我们需要执行以下操作: selector_line_bellow.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_enabled="true"
          android:state_focused="true">
        <layer-list>
            <item android:bottom="-25dp">
                <shape android:shape="line">
                    <solid android:color="@android:color/transparent"/>
                    <stroke
                        android:width="3dp"
                        android:color="#017ba7"/>
                </shape>
            </item>

        </layer-list>
    </item>

    <!-- default-->
    <item >
        <layer-list>
            <item android:bottom="-25dp">
                <shape android:shape="line">
                    <solid android:color="@android:color/transparent"/>
                    <stroke
                        android:width="3dp"
                        android:color="#11017ba7"/>
                </shape>
            </item>
        </layer-list>

    </item>
</selector>

我们的EditText看起来像这样

<EditText
                android:id="@+id/editText"
                android:layout_width="match_parent"
                android:background="@drawable/selector_line_bellow"
                android:layout_margin="@dimen/margin_big"
                android:paddingTop="10dp"
                android:paddingBottom="10dp"
                android:paddingLeft="3dp"
                android:paddingRight="3dp"
                android:layout_height="wrap_content"/>

最后一次接触是在您的活动班级中,或者在将使用此EditText任何地方添加此段代码

editText.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            if(event.getAction()==MotionEvent.ACTION_DOWN) {
                ViewAnimationUtils.createCircularReveal(editText,
                        (int) event.getX(),
                        (int) event.getY(),
                        0,
                        editText.getHeight() * 2).start();
            }
            return false;
        }
    });

请参考这个博客 该博客为您要实现的动画完全实现了一种解决方法。 您可以通过将EditText的背景设置为#00000000并在FrameLayout中使用两个视图 (一个在另一个视图的顶部,首先是不可见的)作为EditText的底行来实现。 EditText获得焦点时,您可以使“ 视图” (顶部的一个)可见,并向“ 视图”添加比例动画以达到类似的效果。

我做了一些看起来像的事情,我将其放在您的TextView下:

package com.example.trist_000.teststack;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.util.AttributeSet;
 import android.view.View;
import android.view.animation.Animation;
import android.view.animation.Transformation;

public class customm extends View {



private class myanim extends Animation{

    public myanim(){
        this.setRepeatMode(INFINITE);
        this.setRepeatCount(INFINITE);
        this.setDuration(2000);
    }

    @Override
    protected void applyTransformation(float interpolatedTime, Transformation t) {
        super.applyTransformation(interpolatedTime, t);

        time =(getWidth()/2)*interpolatedTime;
        postInvalidate();
    }
}

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

public customm(Context context, AttributeSet attrs) {
    super(context, attrs);
    myanim anim = new myanim();
    this.startAnimation(anim);

}

Paint paint = new Paint();
float time = 0;

@Override
public void onDraw(Canvas canvas){

    paint.setStyle(Paint.Style.STROKE);
    paint.setStrokeWidth(4);

    paint.setAntiAlias(true);

    paint.setColor(Color.BLACK);
    paint.setStrokeWidth(1);
    canvas.drawLine(0, getHeight()/2, getWidth(), getHeight()/2, paint);
    paint.setStrokeWidth(2);
    paint.setColor(Color.RED);
    canvas.drawLine(getWidth() / 2, getHeight()/2, (getWidth()/2)-time, getHeight()/2, paint);
    canvas.drawLine(getWidth() / 2,getHeight()/2, (getWidth()/2) +time, getHeight()/2, paint);
    super.onDraw(canvas);
}
}

在您的xml文件中:

<com.example.trist_000.teststack.customm
    android:layout_width="300dp"
    android:layout_height="5dp" />

您必须对其进行一些改进;)。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM