Android SearchView 调整 搜索图标的大小 样式

调整 搜索图标的大小 样式 SearchView 网上好多都是说通过反射什么 一大堆的东西
我看了一下 挺麻烦的 我基础又不好 所以 只能去看源代码 研究一下 试一下
成功了 原来SearchView 的属性不受影响
有兴趣的 朋友们交流一下 如果帮到了你 记得点赞👍呦 😋


searchview.jpg
  1. 先看源码布局 然后找到我们需要用的控件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/search_bar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal">

    <!-- This is actually used for the badge icon *or* the badge label (or neither) -->
    <TextView
            android:id="@+id/search_badge"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:gravity="center_vertical"
            android:layout_marginBottom="2dip"
            android:drawablePadding="0dip"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:textColor="?android:attr/textColorPrimary"
            android:visibility="gone" />

    <ImageView
            android:id="@+id/search_button"//输入框外的搜索按钮
            style="?attr/actionButtonStyle"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="center_vertical"
            android:focusable="true"
            android:contentDescription="@string/abc_searchview_description_search" />

    <LinearLayout
            android:id="@+id/search_edit_frame"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:layout_marginLeft="8dip"
            android:layout_marginRight="8dip"
            android:orientation="horizontal"
            android:layoutDirection="locale">

        <ImageView
                android:id="@+id/search_mag_icon"//输入框内的搜索按钮
                android:layout_width="@dimen/abc_dropdownitem_icon_width"
                android:layout_height="wrap_content"
                android:scaleType="centerInside"
                android:layout_gravity="center_vertical"
                android:visibility="gone"
                style="@style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon" />

        <!-- 内部布局包含应用程序图标、按钮和EditText -->
        <LinearLayout
                android:id="@+id/search_plate"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:layout_gravity="center_vertical"
                android:orientation="horizontal">
           //输入框 默认高度36dp   设置 SearchView  高度的时候要注意  如果小于 这个高度 文字可能不上下居中显示
            <view class="androidx.appcompat.widget.SearchView$SearchAutoComplete" 
                  android:id="@+id/search_src_text"
                  android:layout_height="36dip"
                  android:layout_width="0dp"
                  android:layout_weight="1"
                  android:layout_gravity="center_vertical"
                  android:paddingLeft="@dimen/abc_dropdownitem_text_padding_left"
                  android:paddingRight="@dimen/abc_dropdownitem_text_padding_right"
                  android:singleLine="true"
                  android:ellipsize="end"
                  android:background="@null"
                  android:inputType="text|textAutoComplete|textNoSuggestions"
                  android:imeOptions="actionSearch"
                  android:dropDownHeight="wrap_content"
                  android:dropDownAnchor="@id/search_edit_frame"
                  android:dropDownVerticalOffset="0dip"
                  android:dropDownHorizontalOffset="0dip" />

            <ImageView
                    android:id="@+id/search_close_btn"//删除按钮  设置了 paddingLeft paddingRight  设置宽度的时候注意一下
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:paddingLeft="8dip"
                    android:paddingRight="8dip"
                    android:layout_gravity="center_vertical"
                    android:background="?attr/selectableItemBackgroundBorderless"
                    android:focusable="true"
                    android:contentDescription="@string/abc_searchview_description_clear" />

        </LinearLayout>

        <LinearLayout
                android:id="@+id/submit_area"
                android:orientation="horizontal"
                android:layout_width="wrap_content"
                android:layout_height="match_parent">

            <ImageView
                    android:id="@+id/search_go_btn"
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:layout_gravity="center_vertical"
                    android:paddingLeft="16dip"
                    android:paddingRight="16dip"
                    android:background="?attr/selectableItemBackgroundBorderless"
                    android:visibility="gone"
                    android:focusable="true"
                    android:contentDescription="@string/abc_searchview_description_submit" />

            <ImageView
                    android:id="@+id/search_voice_btn"
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:layout_gravity="center_vertical"
                    android:paddingLeft="16dip"
                    android:paddingRight="16dip"
                    android:background="?attr/selectableItemBackgroundBorderless"
                    android:visibility="gone"
                    android:focusable="true"
                    android:contentDescription="@string/abc_searchview_description_voice" />
        </LinearLayout>
    </LinearLayout>
</LinearLayout>
  1. 控件找到了 我们还需要的定义我们需要的属性
 <declare-styleable name="SelcetView">
        <attr name="closeIcon" format="reference" />
        <attr name="closeIconWidth" format="dimension" />
        <attr name="closeIconHeight" format="dimension" />
        <attr name="searchIcon" format="reference" />
        <attr name="searchIconWidth" format="dimension" />
        <attr name="searchIconHeight" format="dimension" />
        <attr name="queryHintColor" format="color" />
        <attr name="queryBackground" format="reference" />
        <attr name="textSize" format="dimension" />
        <attr name="textColor" format="color" />
        <attr name="iconifiedByDefault" format="boolean" />
    </declare-styleable>
  1. 属性定义好了 我们在代码中获取属性 然后在xml 设置你需要的属性 下面献上代码 若帮您解决了问题 记得点赞哟
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.view.View;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;

import androidx.appcompat.content.res.AppCompatResources;
import androidx.appcompat.widget.AppCompatAutoCompleteTextView;
import androidx.appcompat.widget.SearchView;
import androidx.core.view.ViewCompat;

import com.mylibrary.api.R;
import com.mylibrary.api.utils.SystemUtil;

public class SelcetView extends SearchView {
    private Context context;
    private boolean iconifiedByDefault;
    private Drawable closeDrawable;
    private Drawable searchDrawable;
    private Drawable queryBackground;
    private int closeWidth;
    private int closeHeight;
    private int searchWidth;
    private int searchHeight;
    private int queryHintColor;
    private int textSize;
    private int textColor;
    private ImageView mCollapsedIcon;// iconifiedByDefault="false" 搜索按钮
    private ImageView mCloseButton;//删除按钮
    private ImageView mSearchButton;//iconifiedByDefault="true"  搜索按钮
    private AppCompatAutoCompleteTextView searchText;//
    private LinearLayout linearLayout;
    private View mSearchPlate;//输入框的背景

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

    public SelcetView(Context context, AttributeSet attrs) {
        this(context, attrs, R.attr.searchViewStyle);
    }

    public SelcetView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        this.context = context;
        int defaultSize = SystemUtil.dp2px(context, 16);
        mSearchButton = findViewById(R.id.search_button);
        mCloseButton = findViewById(R.id.search_close_btn);
        mCollapsedIcon = findViewById(R.id.search_mag_icon);
        searchText = findViewById(R.id.search_src_text);
        linearLayout = findViewById(R.id.search_edit_frame);
        mSearchPlate = findViewById(R.id.search_plate);

        TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.SelcetView);
        closeDrawable = array.getDrawable(R.styleable.SelcetView_closeIcon);

        closeWidth = (int) array.getDimension(R.styleable.SelcetView_closeIconWidth, defaultSize);
        closeHeight = (int) array.getDimension(R.styleable.SelcetView_closeIconHeight, defaultSize);

        searchDrawable = array.getDrawable(R.styleable.SelcetView_searchIcon);
        searchWidth = (int) array.getDimension(R.styleable.SelcetView_searchIconWidth, defaultSize);
        searchHeight = (int) array.getDimension(R.styleable.SelcetView_searchIconHeight, defaultSize);

        queryHintColor = array.getColor(R.styleable.SelcetView_queryHintColor, Color.parseColor("#8b8b8b"));
        textColor = array.getColor(R.styleable.SelcetView_textColor, Color.parseColor("#333333"));
        textSize = array.getColor(R.styleable.SelcetView_textSize, 12);

        queryBackground = array.getDrawable(R.styleable.SelcetView_queryBackground);
        iconifiedByDefault = array.getBoolean(R.styleable.SelcetView_iconifiedByDefault, false);

        array.recycle();

        if (linearLayout != null) {
            LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) linearLayout.getLayoutParams();
            params.leftMargin = SystemUtil.dp2px(context, 3);
        }
        setCloseSize(closeWidth, closeHeight);
        setCloseDrawable(closeDrawable);
        setSearchSize(searchWidth, searchHeight);
        setSearchDrawable(searchDrawable);
        setQueryHintColor(queryHintColor);
        setTextColor(textColor);
        setTextSize(textSize);
        setIconifiedByDefault(iconifiedByDefault);
        searchText.setFocusable(false);
        if (queryBackground != null) {
            ViewCompat.setBackground(mSearchPlate, queryBackground);
        } else {
            ViewCompat.setBackground(mSearchPlate, new ColorDrawable(0x00000000));
        }

    }


    public void setCloseDrawable(int closeDrawable) {
        setCloseDrawable(AppCompatResources.getDrawable(context, closeDrawable));
    }

    public void setSearchDrawable(int searchDrawable) {
        setSearchDrawable(AppCompatResources.getDrawable(context, searchDrawable));
    }

    public void setCloseDrawable(Drawable closeDrawable) {
        this.closeDrawable = closeDrawable;
        if (closeDrawable != null && mCloseButton != null) {
            closeDrawable.setBounds(0, 0, closeWidth, closeHeight);
            mCloseButton.setImageDrawable(closeDrawable);
            LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) mCloseButton.getLayoutParams();
            params.width = closeWidth;
            params.height = closeWidth;
            params.rightMargin = SystemUtil.dp2px(context, 3);
            mCloseButton.setPadding(0, 0, 0, 0);
            mCloseButton.setLayoutParams(params);
        }
    }

    public void setSearchDrawable(Drawable searchDrawable) {
        this.searchDrawable = searchDrawable;
        if (searchDrawable != null) {
            searchDrawable.setBounds(0, 0, searchWidth, searchHeight);
            if (mSearchButton != null) {
                mSearchButton.setImageDrawable(searchDrawable);
                LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) mSearchButton.getLayoutParams();
                params.width = searchWidth;
                params.height = searchHeight;
                mSearchButton.setLayoutParams(params);
            }
            if (mCollapsedIcon != null) {
                mCollapsedIcon.setImageDrawable(searchDrawable);
                LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) mCollapsedIcon.getLayoutParams();
                params.width = searchWidth;
                params.height = searchHeight;
                mCollapsedIcon.setLayoutParams(params);
            }
        }

    }


    /**
     * 设置大小 要在设置图标之前设置
     **/
    public void setCloseSize(int closeWidth, int closeHeight) {
        this.closeWidth = closeWidth;
        this.closeHeight = closeHeight;
    }

    /**
     * 设置大小 要在设置图标之前设置
     **/
    public void setSearchSize(int searchWidth, int searchHeight) {
        this.searchWidth = searchWidth;
        this.searchHeight = searchHeight;
    }


    public void setQueryHintColor(int queryHintColor) {
        this.queryHintColor = queryHintColor;
        if (searchText != null) {
            searchText.setHintTextColor(queryHintColor);
        }
    }

    public void setTextSize(int textSize) {
        this.textSize = textSize;
        if (searchText != null) {
            searchText.setTextSize(textSize);
        }
    }

    public void setTextColor(int textColor) {
        this.textColor = textColor;
        if (searchText != null) {
            searchText.setTextColor(textColor);
        }
    }


    public void setListener(OnClickListener listener) {
        if (listener != null) {
            searchText.setOnClickListener(listener);
            mCollapsedIcon.setOnClickListener(listener);
        }

    }

    public TextView getEdittext() {
        return searchText;
    }

    public void setEditFocusable(boolean focusable) {
        searchText.setFocusable(focusable);
        searchText.setFocusableInTouchMode(focusable);
        searchText.requestFocus();

    }

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