android搜索欄

截圖

image.png

流式布局FlowLayout

package com.yds.jianshulib.widget;

import android.content.Context;
import android.util.AttributeSet;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;

import java.util.ArrayList;
import java.util.List;

/**
 * Created by yds
 * on 2020/3/30.
 */
public class FlowLayout extends ViewGroup {
    private List<List<View>> mAllViews = new ArrayList<>();
    private List<Integer> mLineHeightList = new ArrayList<>();

    public FlowLayout(Context context) {
        this(context, null);
    }

    public FlowLayout(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }

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

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        Log.d("onLayout-Time:","onLayout");
        mAllViews.clear();
        mLineHeightList.clear();
        int width = getWidth();
        int lineWidth = 0;
        int lineHeight = 0;
        List<View> lineViews = new ArrayList<>();
        int count = getChildCount();
        for (int i = 0; i < count; i++) {
            View child = getChildAt(i);
            MarginLayoutParams mlp = (MarginLayoutParams) child.getLayoutParams();
            int childWidth = child.getMeasuredWidth();
            int childHeight = child.getMeasuredHeight();
            if (childWidth + mlp.leftMargin + mlp.rightMargin + lineWidth > width) {
                mLineHeightList.add(lineHeight);
                mAllViews.add(lineViews);
                lineWidth = 0;
                lineViews = new ArrayList<>();
            }
            lineWidth+=childWidth+mlp.leftMargin+mlp.rightMargin;
            lineHeight=Math.max(lineHeight,childHeight+mlp.topMargin+mlp.bottomMargin);
            lineViews.add(child);
        }
        mLineHeightList.add(lineHeight);
        mAllViews.add(lineViews);

        int left = 0;
        int top = 0;
        int lineNums = mAllViews.size();
        for (int i=0;i<lineNums;i++){
            lineViews = mAllViews.get(i);
            lineHeight = mLineHeightList.get(i);
            for (int j=0;j<lineViews.size();j++){
                View child = lineViews.get(j);
                if (child.getVisibility()==View.GONE){
                    continue;
                }
                MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();
                int lc = left+lp.leftMargin;
                int tc = top+lp.topMargin;
                int rc = lc+child.getMeasuredWidth();
                int bc = tc+child.getMeasuredHeight();

                child.layout(lc,tc,rc,bc);

                left+=child.getMeasuredWidth()+lp.rightMargin+lp.leftMargin;
            }
            left = 0;
            top+=lineHeight;
        }

    }

    @Override
    public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
        return new MarginLayoutParams(getContext(), attrs);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        Log.d("onMeasure-Time:","onMeasure");
        //獲取總寬度(父容器為它設置的測量值)
        int sizeWidth = MeasureSpec.getSize(widthMeasureSpec);
        //獲取總高度(父容器為它設置的測量值)
        int sizeHeight = MeasureSpec.getSize(heightMeasureSpec);
        //獲取父容器為它設置的測量模式
        int modeWidth = MeasureSpec.getMode(widthMeasureSpec);
        //獲取父容器為它設置的測量模式
        int modeHeight = MeasureSpec.getMode(heightMeasureSpec);

        //如果是wrap_content情況摇展,記錄寬和高
        int width = 0;
        int height = 0;

        //記錄每一行的寬度呻顽,width不斷獲取最大寬度
        int lineWidth = 0;
        //每一行的高度财岔,累加至height
        int lineHeight = 0;
        int count = getChildCount();
        Log.d("onMeasure-Time:","count="+count);
        for (int i = 0; i < count; i++) {
            View child = getChildAt(i);
            //測量每一個child的寬和高
            measureChild(child, widthMeasureSpec, heightMeasureSpec);
            //得到child的lp
            MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();
            //當前子控件實際占據的寬度
            int childWidth = child.getMeasuredWidth() + lp.leftMargin + lp.rightMargin;
            //當前子控件實際占據的高度
            int childHeight = child.getMeasuredHeight() + lp.topMargin + lp.bottomMargin;
            //如果加入當前child超出了最大寬度吞杭,則將得到的目前最大寬度給width,累加height,然后開啟新行
            if (lineWidth + childWidth > sizeWidth) {
                width = Math.max(lineWidth, childWidth);//取最大
                lineWidth = childWidth;//重新開啟新行锋勺,開始記錄
                height += lineHeight;
                lineHeight = childHeight;
            } else {//否則累加到lineWidth蚀瘸,lineHeigth取最大高度
                lineWidth += childWidth;
                lineHeight = Math.max(lineHeight, childHeight);
            }
            //如果是最后一個,則將當前記錄的最大寬度和當前的lineWidth做比較
            if (i == count - 1) {
                width = Math.max(width, lineWidth);
                height += lineHeight;
            }
        }
        setMeasuredDimension((modeWidth == MeasureSpec.EXACTLY) ? sizeWidth : width,
                (modeHeight == MeasureSpec.EXACTLY) ? sizeHeight : height);
    }
}

  • main_module_search_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/search_content"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:visibility="visible">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/search_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp">

        <ImageView
            android:id="@+id/back"
            android:layout_width="25dp"
            android:layout_height="25dp"
            android:src="@drawable/f_back"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

        <EditText
            android:id="@+id/searc_edit"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="30dp"
            android:layout_marginRight="10dp"
            android:background="@drawable/shape_search"
            android:hint="搜索文章庶橱、專題贮勃、用戶、文集"
            android:inputType="text"
            android:paddingLeft="10dp"
            android:paddingTop="10dp"
            android:paddingRight="50dp"
            android:paddingBottom="10dp"
            android:singleLine="true"
            android:textColor="#A2A2A2"
            android:textSize="14sp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toRightOf="@+id/back"
            app:layout_constraintTop_toTopOf="parent" />

        <View
            android:layout_width="1dp"
            android:layout_height="30dp"
            android:layout_marginRight="10dp"
            android:background="@color/f_line_gray"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintRight_toLeftOf="@+id/search_img"
            app:layout_constraintTop_toTopOf="parent" />

        <ImageView
            android:id="@+id/search_img"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:layout_gravity="center"
            android:layout_marginRight="20dp"
            android:src="@drawable/f_search"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

    </androidx.constraintlayout.widget.ConstraintLayout>

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="@color/f_line_gray" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:paddingStart="10dp"
        android:paddingTop="5dp"
        android:paddingBottom="5dp">

        <ImageView
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:src="@drawable/search_history" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_marginStart="10dp"
            android:text="歷史記錄"
            android:textColor="@color/f_black" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:paddingRight="10dp"
            android:text="清除歷史"
            android:textAlignment="textEnd"
            android:textColor="#A2A2A2" />
    </LinearLayout>

    <com.yds.jianshulib.widget.FlowLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="20dp"
        android:layout_marginRight="20dp"
        android:layout_marginBottom="5dp">

        <TextView
            style="@style/search_flow_layout_text"
            android:text="welcome" />

        <TextView
            style="@style/search_flow_layout_text"
            android:text="測試" />

        <TextView
            style="@style/search_flow_layout_text"
            android:text="查找ViewHolder" />

        <TextView
            style="@style/search_flow_layout_text"
            android:text="快速查找" />

        <TextView
            style="@style/search_flow_layout_text"
            android:text="線程" />

        <TextView
            style="@style/search_flow_layout_text"
            android:text="多線程" />
    </com.yds.jianshulib.widget.FlowLayout>

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="#EBE8E8" />
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:paddingTop="10dp"
        android:paddingBottom="10dp">
        <ImageView
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:src="@drawable/search_populer"
            android:layout_marginLeft="10dp"
            />
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@color/f_black"
            android:layout_marginLeft="10dp"
            android:text="搜索趨勢"/>
    </LinearLayout>
    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/search_rank_recycler"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="10dp">

    </androidx.recyclerview.widget.RecyclerView>
</LinearLayout>
  • recycler_adapter_item_search_rank.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <TextView
            android:id="@+id/rank_index"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="10dp"
            tools:text="1"
            android:layout_gravity="center"
            android:textSize="20sp"/>
        <TextView
            android:id="@+id/search_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="10dp"
            android:textColor="@color/f_black"
            android:textSize="16sp"
            tools:text="超級計算機與快速治療試驗苏章,能否阻遏新冠病毒的傳播速度寂嘉?"
            android:layout_gravity="center"/>
    </LinearLayout>
    <View
        android:layout_width="match_parent"
        android:layout_height="0.8dp"
        android:background="@color/f_line_gray"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        />
</LinearLayout>
  • SearchRankAdapter
package com.yds.mainmodule.adapter;

import android.content.Context;
import android.text.SpannableStringBuilder;
import android.text.Spanned;
import android.text.style.AbsoluteSizeSpan;
import android.text.style.ForegroundColorSpan;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;

import com.yds.mainmodule.R;
import com.yds.mainmodule.bo.SearchRankBO;


import java.util.List;

/**
 * Created by yds
 * on 2020/4/1.
 */
public class SearchRankAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {
    private Context mContext;
    private List<SearchRankBO> mSearchDataList;

    public SearchRankAdapter(Context mContext, List<SearchRankBO> searchList) {
        this.mContext = mContext;
        this.mSearchDataList = searchList;
    }

    @NonNull
    @Override
    public RecyclerView.ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
        View view = LayoutInflater.from(mContext).inflate(R.layout.recycler_adapter_item_search_rank, parent, false);
        return new MyViewHolder(view);
    }

    @Override
    public void onBindViewHolder(@NonNull RecyclerView.ViewHolder holder, int position) {
        MyViewHolder viewHolder = (MyViewHolder) holder;
        viewHolder.rankIndex.setText(mSearchDataList.get(position).getRankIndex());
        String seachText = mSearchDataList.get(position).getSearchText();
        String readTip = "閱讀 " + mSearchDataList.get(position).getReadNum();
        SpannableStringBuilder searchContent = new SpannableStringBuilder(seachText + readTip);
        ForegroundColorSpan span = new ForegroundColorSpan(mContext.getResources().getColor(R.color.f_text_gray));
        searchContent.setSpan(span,seachText.length(),seachText.length()+readTip.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
        AbsoluteSizeSpan sizeSpan = new AbsoluteSizeSpan(14,true);
        searchContent.setSpan(sizeSpan,seachText.length(),seachText.length()+readTip.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
        viewHolder.searchText.setText(searchContent);
    }

    @Override
    public int getItemCount() {
        return mSearchDataList.size();
    }

    private class MyViewHolder extends RecyclerView.ViewHolder {
        private TextView rankIndex;
        private TextView searchText;

        private MyViewHolder(@NonNull View itemView) {
            super(itemView);
            rankIndex = itemView.findViewById(R.id.rank_index);
            searchText = itemView.findViewById(R.id.search_text);
        }
    }
}

源碼地址:https://github.com/ydslib/Jianshu/tree/develop

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市枫绅,隨后出現的幾起案子泉孩,更是在濱河造成了極大的恐慌,老刑警劉巖并淋,帶你破解...
    沈念sama閱讀 216,372評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件寓搬,死亡現場離奇詭異,居然都是意外死亡县耽,警方通過查閱死者的電腦和手機订咸,發(fā)現死者居然都...
    沈念sama閱讀 92,368評論 3 392
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來酬诀,“玉大人脏嚷,你說我怎么就攤上這事÷饔” “怎么了父叙?”我有些...
    開封第一講書人閱讀 162,415評論 0 353
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經常有香客問我趾唱,道長涌乳,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,157評論 1 292
  • 正文 為了忘掉前任甜癞,我火速辦了婚禮夕晓,結果婚禮上,老公的妹妹穿的比我還像新娘悠咱。我一直安慰自己蒸辆,他們只是感情好,可當我...
    茶點故事閱讀 67,171評論 6 388
  • 文/花漫 我一把揭開白布析既。 她就那樣靜靜地躺著躬贡,像睡著了一般。 火紅的嫁衣襯著肌膚如雪眼坏。 梳的紋絲不亂的頭發(fā)上拂玻,一...
    開封第一講書人閱讀 51,125評論 1 297
  • 那天,我揣著相機與錄音宰译,去河邊找鬼檐蚜。 笑死,一個胖子當著我的面吹牛沿侈,可吹牛的內容都是我干的闯第。 我是一名探鬼主播,決...
    沈念sama閱讀 40,028評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼肋坚,長吁一口氣:“原來是場噩夢啊……” “哼乡括!你這毒婦竟也來了肃廓?” 一聲冷哼從身側響起智厌,我...
    開封第一講書人閱讀 38,887評論 0 274
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎盲赊,沒想到半個月后铣鹏,有當地人在樹林里發(fā)現了一具尸體,經...
    沈念sama閱讀 45,310評論 1 310
  • 正文 獨居荒郊野嶺守林人離奇死亡哀蘑,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 37,533評論 2 332
  • 正文 我和宋清朗相戀三年诚卸,在試婚紗的時候發(fā)現自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片绘迁。...
    茶點故事閱讀 39,690評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡合溺,死狀恐怖,靈堂內的尸體忽然破棺而出缀台,到底是詐尸還是另有隱情棠赛,我是刑警寧澤,帶...
    沈念sama閱讀 35,411評論 5 343
  • 正文 年R本政府宣布,位于F島的核電站睛约,受9級特大地震影響鼎俘,放射性物質發(fā)生泄漏。R本人自食惡果不足惜辩涝,卻給世界環(huán)境...
    茶點故事閱讀 41,004評論 3 325
  • 文/蒙蒙 一贸伐、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧怔揩,春花似錦捉邢、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,659評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至翘狱,卻和暖如春秘案,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背潦匈。 一陣腳步聲響...
    開封第一講書人閱讀 32,812評論 1 268
  • 我被黑心中介騙來泰國打工阱高, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人茬缩。 一個月前我還...
    沈念sama閱讀 47,693評論 2 368
  • 正文 我出身青樓赤惊,卻偏偏與公主長得像,于是被迫代替她去往敵國和親凰锡。 傳聞我的和親對象是個殘疾皇子未舟,可洞房花燭夜當晚...
    茶點故事閱讀 44,577評論 2 353

推薦閱讀更多精彩內容