可輸入的下拉框

最近項(xiàng)目中需要用到可輸入的下拉框,Android提供的Spinner當(dāng)然是不能滿足要求的件相,gitHub上搜一下也有幾個(gè)別人寫好的控件可用再扭。大體上看了以下,不是特別麻煩夜矗,這里就自己寫一個(gè)吧泛范。

這個(gè)可輸入的下拉框其實(shí)是比較簡單的一個(gè)控件,只需要一個(gè)EditText和ListPopupWindow就能實(shí)現(xiàn)了紊撕。下面直接上代碼來實(shí)現(xiàn)下面這樣的可輸入下拉框:


editableSpinner.png

布局文件(editable_spinner.xml):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="horizontal"
              android:layout_width="match_parent"
              android:layout_height="match_parent">
    <EditText
        android:id="@+id/et_input"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:paddingLeft="5dp"
        android:layout_height="match_parent"
        android:textCursorDrawable="@null"
        android:maxLines="1"
        android:inputType="text"
        android:background="@drawable/stroke_grey"/>

    <ImageButton
        android:id="@+id/img_btn_down"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:scaleType="centerInside"/>
</LinearLayout>

下面是我們自定義控件的代碼(EditableSpinner.java):

public class EditableSpinner extends LinearLayout implements AdapterView.OnItemClickListener {

    private ImageButton mImgBtnDown;
    private EditText mEtInput;
    private ListPopupWindow mListPopupWindow;
    private OnItemClickListener mOnItemClickListener;
    private ArrayAdapter mArrayAdapter;

    public interface OnItemClickListener {
        void onItemClick(int position);
    }

    public EditableSpinner(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        LayoutInflater.from(context).inflate(R.layout.editable_spinner,this);

        mImgBtnDown = findViewById(R.id.img_btn_down);
        mEtInput = findViewById(R.id.et_input);
        mListPopupWindow = new ListPopupWindow(context);

        TypedArray attrArr = context.obtainStyledAttributes(attrs, R.styleable.EditableSpinner);
        Drawable downImage = attrArr.getDrawable(R.styleable.EditableSpinner_downBtnImage);
        float textSize = attrArr.getDimension(R.styleable.EditableSpinner_textSize, 14);
        int downBtnWidth = (int) attrArr.getDimension(R.styleable.EditableSpinner_downBtnWidth, DpAPxUtils.dp2px(context, 40));
        int textColor = attrArr.getColor(R.styleable.EditableSpinner_textColor, 0x000000);
        int downBtnBgColor = attrArr.getColor(R.styleable.EditableSpinner_downBtnBackground, 0x00ffffff);

        mImgBtnDown.setImageDrawable(downImage);
        mImgBtnDown.setBackgroundColor(downBtnBgColor);
        LinearLayout.LayoutParams lp = (LayoutParams) mImgBtnDown.getLayoutParams();
        lp.width = downBtnWidth;
        mImgBtnDown.setLayoutParams(lp);

        mImgBtnDown.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                mListPopupWindow.show();
            }
        });

        mEtInput.setTextSize(DpAPxUtils.px2dp(context, textSize));
        mEtInput.setTextColor(textColor);
    }

    public EditableSpinner setAdapter(ArrayAdapter<String> adapter) {

        mArrayAdapter = adapter;

        mListPopupWindow.setAdapter(adapter);
        mListPopupWindow.setAnchorView(mEtInput);
        mListPopupWindow.setModal(true);
        mListPopupWindow.setOnItemClickListener(this);
        return this;
    }

    public EditableSpinner setOnItemClickListener(OnItemClickListener onItemClickListener) {
        mOnItemClickListener = onItemClickListener;
        return this;
    }

    public String getSelectedItem() {
        return mEtInput.getText().toString();
    }

    @Override
    public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
        mListPopupWindow.dismiss();
        mEtInput.setText((CharSequence) mArrayAdapter.getItem(position));
        if (mOnItemClickListener != null) {
            mOnItemClickListener.onItemClick(position);
        }
    }
}

最后是控件用到的屬性定義(attrs.xml):
這里暫時(shí)給外部提供下拉框右側(cè)按鈕的一些屬性和下拉框中EditText的一些屬性罢荡。

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="EditableSpinner">
        <attr name="downBtnImage" format="reference"/>
        <attr name="downBtnBackground" format="color"/>
        <attr name="downBtnWidth" format="dimension"/>
        <attr name="textSize" format="dimension"/>
        <attr name="textColor" format="color"/>
    </declare-styleable>
</resources>

這樣自定義控件就完成了,使用起來也算比較方便的:

<test.com.view.EditableSpinner
            android:id="@+id/editable_spinner"
            android:layout_marginTop="@dimen/margin_5"
            android:layout_width="match_parent"
            android:layout_height="35dp"
            app:textSize="@dimen/font_size_normal"
            app:textColor="@color/colorBlack"
            app:downBtnImage="@drawable/arrow_down"
            app:downBtnBackground="@color/colorAccent"/>
mOrderAdapter = new ArrayAdapter<String>(getActivity(),android.R.layout.simple_spinner_dropdown_item,mOrders);
        mEditableSpinner.setAdapter(mOrderAdapter)
                .setOnItemClickListener(new EditableSpinner.OnItemClickListener() {
                    @Override
                    public void onItemClick(int position) {
                            // .....
                    }
                });
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末对扶,一起剝皮案震驚了整個(gè)濱河市区赵,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌浪南,老刑警劉巖笼才,帶你破解...
    沈念sama閱讀 211,265評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異络凿,居然都是意外死亡骡送,警方通過查閱死者的電腦和手機(jī)昂羡,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來摔踱,“玉大人虐先,你說我怎么就攤上這事∨煞螅” “怎么了蛹批?”我有些...
    開封第一講書人閱讀 156,852評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長篮愉。 經(jīng)常有香客問我腐芍,道長,這世上最難降的妖魔是什么潜支? 我笑而不...
    開封第一講書人閱讀 56,408評論 1 283
  • 正文 為了忘掉前任甸赃,我火速辦了婚禮柿汛,結(jié)果婚禮上冗酿,老公的妹妹穿的比我還像新娘。我一直安慰自己络断,他們只是感情好裁替,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著貌笨,像睡著了一般弱判。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上锥惋,一...
    開封第一講書人閱讀 49,772評論 1 290
  • 那天昌腰,我揣著相機(jī)與錄音,去河邊找鬼膀跌。 笑死遭商,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的捅伤。 我是一名探鬼主播劫流,決...
    沈念sama閱讀 38,921評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼丛忆!你這毒婦竟也來了祠汇?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,688評論 0 266
  • 序言:老撾萬榮一對情侶失蹤熄诡,失蹤者是張志新(化名)和其女友劉穎可很,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體凰浮,經(jīng)...
    沈念sama閱讀 44,130評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡我抠,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評論 2 325
  • 正文 我和宋清朗相戀三年姜骡,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片屿良。...
    茶點(diǎn)故事閱讀 38,617評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡圈澈,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出尘惧,到底是詐尸還是另有隱情康栈,我是刑警寧澤,帶...
    沈念sama閱讀 34,276評論 4 329
  • 正文 年R本政府宣布喷橙,位于F島的核電站啥么,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏贰逾。R本人自食惡果不足惜悬荣,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望疙剑。 院中可真熱鬧氯迂,春花似錦、人聲如沸言缤。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽管挟。三九已至轿曙,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間僻孝,已是汗流浹背导帝。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留穿铆,地道東北人您单。 一個(gè)月前我還...
    沈念sama閱讀 46,315評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像悴务,于是被迫代替她去往敵國和親睹限。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評論 2 348