Android - 自定义View,实现不一样的输入框

最近看到一个效果,就是在登陆界面输入账号密码的时候,会有一个动画效果,感觉不错,找了一些资料,学习了一下。已经实现效果,效果如下:


undefined_腾讯视频

ok,首先先分析一下这个输入框(账号和密码是一样的),上代码:

xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="vertical"

>

android:id="@+id/tv_topmessage"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignParentLeft="true"

    android:textSize="14sp"/>

android:layout_width="match_parent"

android:layout_height="50dp"

android:layout_below="@+id/tv_topmessage"

>



    android:id="@+id/tv_bottomMessage"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:clickable="false"

android:visibility="invisible"

android:gravity="center_vertical"

android:layout_centerVertical="true"

android:textSize="16sp"

    />

android:id="@+id/edt_content"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:layout_alignParentStart="true"

android:layout_alignParentTop="true"

android:background="@null"

android:textColor="#2A2A2A"

android:textColorHint="#999999"

android:textSize="16sp"/>



 

android:layout_width="match_parent"

android:layout_height="1dp"

android:layout_alignParentBottom="true"

    android:background="#EBEBEB" />

布局的效果是这样的,实际情况是我选择的是wrap-content,这样是为了便于大家理解:


先说一下思路:

首先要自定义属性:


   注释很明确,不解释。。。。

提示如何根据自定义属性获取属性值:TypedArray.。

情况一:

在刚进入界面的时候,EditText没有内容,让TextViewA,移动到TextViewB的位置,TextViewA显示内容,比如:请输入密码(这里用到了自定义的属性值bottomMessage)。

情况二:

当EditText输入内容的时候,TextViewA动画回退到之前的位置,重新设置内容,比如:密码(这里用到了自定义的属性值topMessage)。

重点:如何计算顶部TextViewA移动的到TextViewB的位置或者回退到顶部的移动距离呢?



就是重写onWindowFocusChanged()方法,自定义控件初始化完毕,可通过getLocationInWindow(),获取各控件的位置信息,也就是TextView的x值y值,我这里用了两个数组分别记录A,B。,既然获取了坐标,那A移动的距离就是B的Y坐标减A的Y坐标,X坐标嘛,都一样。


最后一步动画:传入相关参数即可。

已上传github: https://github.com/searchdingding/CustomViewDemo

你可能感兴趣的:(Android - 自定义View,实现不一样的输入框)