Android仿简书搜索框效果的示例代码

前言

之前用简书的时候一直是在web端,后来下载了客户端,看到了搜索的那个动画,就尝试的去写了,没写之前感觉挺容易的,写了之后,就感觉里面还是有些要注意的东西的。话不多说,直接上图。

头部视图:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
       xmlns:app="http://schemas.android.com/apk/res-auto"
       android:id="@+id/id_header_view"
       android:layout_width="match_parent"
       android:layout_height="match_parent">
    <TextView
      android:id="@+id/id_tv_header_view"
      android:layout_width="match_parent"
      android:layout_height="120dp"
      android:background="@color/c_3ec88e"
      android:gravity="center"
      android:text="我是头部"
     />
</RelativeLayout>

微信公众号搜索 “ 程序精选 ” ,选择关注!
精选程序员所需精品干货内容!