安卓自定义IOS风格的标题栏搜索框

遇到一个用iPhone的产品是一种怎样的体验?那就是不管做什么功能,遇到什么需求,安卓的效果必须要和ios一致,难受...

好吧,扯远了!今天要给大家展示的是一个IOS风格的标题栏搜索框,效果图如下:


SearchTitleBar.gif

我们先说一下实现原理。滚动列表时,通过ObjectAnimator改变搜索框的宽度来控制搜索框的展开和收回;点击搜索框打开搜索详情页面,用的安卓5.0加入共享元素转场动画。如果对转场动画不了解的同学,可以点击链接了解一下。下面我来带大家看看关键部分代码。

由于我们需要用到属性动画,而我们用到的ObjectAnimator 执行动画时需要对应属性有get set方法,因此通过 ViewWrapper 提供get set 方法封装view。
public class ViewWrapper {
    private View mTarget;

    public ViewWrapper(View target) {
        mTarget = target;
    }

    public int getWidth() {
        return mTarget.getLayoutParams().width;
    }

    public void setWidth(int width) {
        mTarget.getLayoutParams().width = width;
        mTarget.requestLayout();
    }

    public int getHeight() {
        return mTarget.getLayoutParams().height;
    }

    public void setHeight(int height) {
        mTarget.getLayoutParams().height = height;
        mTarget.requestLayout();
    }
}
然后我们自定义一个搜索框SearchTitleBar
public class SearchTitleBar extends LinearLayout implements OnLimitClickListener {
    private final int ANIM_TYPE_START = 1;
    private final int ANIM_TYPE_RESET = 2;

    @BindView(R.id.holder_view)
    View holderView;

    @BindView(R.id.search_layout)
    LinearLayout searchLayout;

    @BindView(R.id.search_tv)
    TextView searchTv;

    @BindView(R.id.search_iv)
    ImageView searchIv;

    @BindView(R.id.search_edit)
    TextView searchEt;

    @BindView(R.id.divide_view)
    View divideView;

    private OnSearchTitleBarListener onSearchTitleBarListener = null;

    private ViewWrapper wrapper = null;
    private ObjectAnimator animator = null;
    private int curAnimType = 0;

    private int holderViewWidth = 0;
    private int searchLayoutInitWidth = 0;

    public void setOnSearchTitleBarListener(OnSearchTitleBarListener onSearchTitleBarListener) {
        this.onSearchTitleBarListener = onSearchTitleBarListener;
    }

    public SearchTitleBar(Context context) {
        super(context);
        builder(context);
    }

    public SearchTitleBar(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        builder(context);
    }

    public SearchTitleBar(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        builder(context);
    }

    private void builder(Context context) {
        LayoutInflater inflater = (LayoutInflater) context
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View view = inflater.inflate(R.layout.search_title_bar_layout, null);
        view.setLayoutParams(new LayoutParams(
                LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, 1.0f));

        searchLayoutInitWidth = context.getResources().getDimensionPixelSize(R.dimen.search_init_width);

        ButterKnife.bind(this, view);

        divideView.setVisibility(View.GONE);

        wrapper = new ViewWrapper(searchLayout);

        this.addView(view);

        searchLayout.setOnClickListener(new OnLimitClickHelper(this));
    }

    public View getSearchLayout() {
        return searchLayout;
    }

    public View getSearchTv() {
        return searchTv;
    }

    public View getSearchEt() {
        return searchEt;
    }

    public View getSearchIv() {
        return searchIv;
    }

    public void setHint(String hint) {
        if (TextUtils.isEmpty(hint)) {
            searchEt.setPadding(0, 0, 0, 0);
        } else {
            searchEt.setPadding(Utils.getResourcesDimension(R.dimen.dimen_size_5), 0, 0, 0);
        }
        searchEt.setText(hint);
    }

    public void showDivide() {
        divideView.setVisibility(View.VISIBLE);
    }

    public void hideDivide() {
        divideView.setVisibility(View.GONE);
    }

    public void performAnimate(final boolean startOrReset) {
        if (holderViewWidth == 0) {
            holderViewWidth = holderView.getWidth();
        }

        int animType = 0;
        int endWidth = 0;

        if (startOrReset) {
            animType = ANIM_TYPE_START;
            endWidth = holderViewWidth;
            searchLayout.setBackgroundResource(R.drawable.shape_search_gray);
        } else {
            animType = ANIM_TYPE_RESET;
            endWidth = searchLayoutInitWidth;
            searchLayout.setBackgroundResource(R.drawable.shape_search_white);
        }

        if (curAnimType != animType) {
            if (animator != null) {
                animator.cancel();
                curAnimType = animType;
            }
        } else {
            return;
        }


        animator = ObjectAnimator.ofInt(wrapper, "width", endWidth);
        animator.addListener(new Animator.AnimatorListener() {
            @Override
            public void onAnimationStart(Animator animation) {
                hideDivide();

                if (startOrReset) {
                    setHint("输入搜索关键字");
                } else {
                    setHint("搜索");
                }
            }

            @Override
            public void onAnimationEnd(Animator animation) {
                if (curAnimType == ANIM_TYPE_START) {
                    showDivide();
                }
            }

            @Override
            public void onAnimationCancel(Animator animation) {

            }

            @Override
            public void onAnimationRepeat(Animator animation) {

            }
        });

        animator.setDuration(300);
        animator.start();
    }

    @Override
    public void onClick(View view) {
        if (view.getId() == R.id.search_layout) {
            if (onSearchTitleBarListener != null) {
                onSearchTitleBarListener.onClickSearch();
            }
        }
    }

    public interface OnSearchTitleBarListener {

        void onClickSearch();
    }
}
布局文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="@dimen/dimen_size_50">

    <RelativeLayout
        android:id="@+id/search_title_bar_root_layout"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dimen_size_50">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal"
            android:gravity="center_vertical">

            <View
                android:layout_width="match_parent"
                android:layout_height="match_parent"/>

            <!-- 转场动画共享 -->
            <TextView
                android:id="@+id/search_tv"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="@dimen/dimen_size_15"
                android:layout_marginRight="@dimen/dimen_size_15"
                android:text="取消"
                android:textColor="#FF666666"
                android:textSize="@dimen/font_size_14"
                android:transitionName="@string/trans_anim_search_tv"/>

        </LinearLayout>

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginLeft="@dimen/dimen_size_10"
            android:layout_marginRight="@dimen/dimen_size_15">

            <View
                android:id="@+id/holder_view"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />

            <!-- 转场动画共享 -->
            <LinearLayout
                android:id="@+id/search_layout"
                android:layout_width="@dimen/search_init_width"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:background="@drawable/shape_search_white"
                android:gravity="center"
                android:orientation="horizontal"
                android:paddingTop="@dimen/dimen_size_8"
                android:paddingBottom="@dimen/dimen_size_8"
                android:transitionName="@string/trans_anim_search_layout"
                android:visibility="visible">

                <ImageView
                    android:id="@+id/search_iv"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@mipmap/search_icon"
                    android:transitionName="@string/trans_anim_search_iv"/>

                <TextView
                    android:id="@+id/search_edit"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="@dimen/dimen_size_4"
                    android:gravity="center"
                    android:ellipsize="end"
                    android:singleLine="true"
                    android:lines="1"
                    android:text="搜索"
                    android:textColor="#999999"
                    android:textSize="@dimen/font_size_13"
                    android:transitionName="@string/trans_anim_search_edit"/>

            </LinearLayout>

        </RelativeLayout>

        <View
            android:id="@+id/divide_view"
            android:layout_width="match_parent"
            android:layout_height="@dimen/dimen_size_1"
            android:layout_alignParentBottom="true"
            android:background="#FFF2F2F2" />
    </RelativeLayout>

</RelativeLayout>

这里我们定义了一个holderView,目的是通过holderView来测量搜索框展开时的宽度。

然后我们在activity中监听RecylerView的滚动来控制搜索框的展开和收回
recyclerView.addOnScrollListener(new RecyclerView.OnScrollListener() {
            @Override
            public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
                super.onScrolled(recyclerView, dx, dy);
                setupTitleBar();
            }
        });

public void setupTitleBar() {
        if (recyclerView == null || titleBar == null) {
            return;
        }

        int top = getRvScollY();

        if(searchBarState == 0 && top >= tagetHeight){
            searchBarState = 1;
            titleBar.performAnimate(true);
        } else if((top >= tagetHeight) && (top <= resetTagetHeight)){
            titleBar.hideDivide();
        }  else if(searchBarState == 1 && top <= resetTagetHeight){
            searchBarState = 0;
            titleBar.performAnimate(false);
        }

        if (Math.abs(top) <= tagetHeight) {
            float precent = (Math.abs(top) * 1.0f / tagetHeight);
            int alpha = (int) (precent * 255);
            titleBar.setBackgroundColor(Color.argb(alpha, 255, 255, 255));
        } else {
            titleBar.setBackgroundColor(Color.argb(255, 255, 255, 255));
        }
}

public int getRvScollY() {
        LinearLayoutManager layoutManager = (LinearLayoutManager) recyclerView.getLayoutManager();
        int position = layoutManager.findFirstVisibleItemPosition();
        View firstVisiableChildView = layoutManager.findViewByPosition(position);
        int itemHeight = firstVisiableChildView.getHeight();
        return (position) * itemHeight - firstVisiableChildView.getTop();
}

这个地方的关键点就是我们需要获取rv滚动的距离,由于rv item是复用的,所以我们没法通过第一个可见item getTop的方法来获取滚动距离。因此我们采用的方式是获取第一个可见item的位置乘以item的高度再减去首个可见item距离顶部的距离即可获取到rv真实的滚动距离。

最后转场动画
        Intent intent = new Intent(this, SearchDetailActivity.class);
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            startActivity(intent, ActivityOptions.makeSceneTransitionAnimation(this,
                    Pair.create(titleBar.getSearchLayout()
                            , Utils.getResourcesString(R.string.trans_anim_search_layout)),
                    Pair.create(titleBar.getSearchTv()
                            , Utils.getResourcesString(R.string.trans_anim_search_tv)),
                    Pair.create(titleBar.getSearchIv()
                            , Utils.getResourcesString(R.string.trans_anim_search_iv)),
                    Pair.create(titleBar.getSearchEt()
                            , Utils.getResourcesString(R.string.trans_anim_search_edit))).toBundle());
        } else {
            startActivity(intent);
        }

值得注意的是这里需要做一下版本判断,因为5.0以下的版本是不支持共享元素的。

源码请戳!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,254评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,875评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,682评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,896评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,015评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,152评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,208评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,962评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,388评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,700评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,867评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,551评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,186评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,901评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,689评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,757评论 2 351