Android: AutoCompleteTextView कोई पाठ दर्ज किए जाने पर सुझाव दिखाता है


127

मैं उपयोग कर रहा हूं AutoCompleteTextView, जब उपयोगकर्ता उस पर क्लिक करता है, तो मैं सुझाव देना चाहता हूं भले ही उसके पास कोई पाठ न हो - लेकिन setThreshold(0)ठीक उसी तरह काम करता है setThreshold(1)- ताकि उपयोगकर्ता को सुझाव दिखाने के लिए कम से कम 1 वर्ण दर्ज करना पड़े।


मैं यहाँ कुछ कर रहा हूँ !!! stackoverflow.com/questions/12854336/…
toobsco42

जवाबों:


159

यह प्रलेखित व्यवहार है :

जब threshold0 से कम या बराबर होता है, तो 1 की सीमा लागू की जाती है।

आप मैन्युअल रूप से ड्रॉप-डाउन के माध्यम से दिखा सकते हैं showDropDown(), इसलिए शायद आप जब चाहें तब इसे दिखाने की व्यवस्था कर सकते हैं। या, सबक्लास AutoCompleteTextViewऔर ओवरराइड enoughToFilter(), trueसभी समय की वापसी ।


7
शोड्रॉपडाउन () onClickListener को सेट करने के लिए अच्छी तरह से काम करता है, लेकिन उप-विषयक काम नहीं कर रहा है उपयोगकर्ता एक पत्र में प्रवेश करता है और वापस आ जाता है। लेकिन सिर्फ onClick के साथ ही नहीं ...
amj

9
यह OnFocusChangeListener के साथ संयोजन के रूप में पूरी तरह से काम करता है जो शोड्रॉपडाउन () को कॉल करता है जब दृश्य फोकस प्राप्त करता है।
ग्रिस्का

मुझे onFocusChanged को भी ओवरराइड करना है, जैसा कि नीचे दिए गए उत्तर पर @David Vávra
गेब्रियल

4
@commonsWare कब showDropDown()में काम नहीं कर रहा है । WHYYYafterTextChanged.getText().toString().length()==0
Prbs

1
केवल पर्याप्तToFilter ओवरराइड करने से मुझे मदद मिलती है। धन्यवाद!
फेडिर त्सापाना

121

यहाँ मेरी क्लास InstantAutoComplete है । इसके बीच कुछ है AutoCompleteTextViewऔर Spinner

import android.content.Context;  
import android.graphics.Rect;
import android.util.AttributeSet;
import android.widget.AutoCompleteTextView;

public class InstantAutoComplete extends AutoCompleteTextView {

    public InstantAutoComplete(Context context) {
        super(context);
    }

    public InstantAutoComplete(Context arg0, AttributeSet arg1) {
        super(arg0, arg1);
    }

    public InstantAutoComplete(Context arg0, AttributeSet arg1, int arg2) {
        super(arg0, arg1, arg2);
    }

    @Override
    public boolean enoughToFilter() {
        return true;
    }

    @Override
    protected void onFocusChanged(boolean focused, int direction,
            Rect previouslyFocusedRect) {
        super.onFocusChanged(focused, direction, previouslyFocusedRect);
        if (focused && getAdapter() != null) {
            performFiltering(getText(), 0);
        }
    }

}

इसे अपने xml में इस तरह प्रयोग करें:

<your.namespace.InstantAutoComplete ... />

12
एक दम बढ़िया! मैं यह भी बताना चाहूंगा कि आपके लेआउट XML फ़ाइल में आपको बदलना <AutoCompleteTextView ... />होगा <your.namespace.InstantAutoComplete ... />। मैं कुछ समय के लिए यह पता लगा खो दिया :)
जूल्स कॉल

3
महान वर्ग - केवल सुझाव onFocusChanged पद्धति में होगा, "if (फ़ोकस)" को "if (फ़ोकस && getAdapter) ()! = Null) में बदलें।
जैकब तबक

के लिए AndroidX , विस्तार androidx.appcompat.widget.AppCompatAutoCompleteTextView
महमूदुल हसन शोघ

यह अभिविन्यास परिवर्तन पर ड्रॉपडाउन नहीं दिखाता है।
मिह_x64

45

सबसे आसान उपाय:

बस setOnTouchListener और showDropDown () का उपयोग करें

AutoCompleteTextView text;
.....
.....
text.setOnTouchListener(new View.OnTouchListener(){
   @Override
   public boolean onTouch(View v, MotionEvent event){
      text.showDropDown();
      return false;
   }
});

इसे और भी बेहतर बनाने के लिए यदि (! Text.isPopupShowing ()) {text.showDropDown (); }
बोल्डिजार पॉल

7
बहुत आम नहीं है, लेकिन उपयोगकर्ता इस EditText पर जाने के लिए स्पर्श नहीं करने की स्थिति में काम नहीं करेगा। बटन के साथ रिमोट कंट्रोल का उपयोग करते समय उदाहरण के लिए (एंड्रॉइड टीवी, उदाहरण के लिए)।
Android डेवलपर

2
आपको setOnFocusChanged का उपयोग करना चाहिए। किसी के पास कीबोर्ड हो सकता है और TAB बटन दबा सकता है या माउस और टच श्रोता का उपयोग नहीं किया जाएगा।
बार्वनिक

onTouchListener को एक टैप के लिए अलग-अलग समय कहा जाएगा - Ex: ईवेंट MotionEvent.ACTION_DOWN, MotionEvent.ACTION_UP हो सकता है। तो एक विशिष्ट घटना की जांच करना और कोड लिखना बेहतर है
गोविंद

18

डेस्टिल का कोड केवल तब महान काम करता है जब केवल एक InstantAutoCompleteवस्तु हो। हालांकि यह दो के साथ काम नहीं किया - पता नहीं क्यों। लेकिन जब मैंने इस showDropDown()तरह से (कॉमन्सवेयर सलाह की onFocusChanged()तरह ) डाला :

@Override
protected void onFocusChanged(boolean focused, int direction,
        Rect previouslyFocusedRect) {
    super.onFocusChanged(focused, direction, previouslyFocusedRect);
    if (focused) {
        performFiltering(getText(), 0);
        showDropDown();
    }
}

इससे समस्या हल हो गई।

यह ठीक से संयुक्त दो जवाब है, लेकिन मुझे आशा है कि यह किसी को कुछ समय बचा सकता है।


2
आपके जोड़ ने मदद की, लेकिन मुझे एक त्रुटि मिली अगर InstantAutoComplete में पाठ था और स्क्रीन ओरिएंटेशन बदल गया। मैंने इसे खिड़की की दृश्यता पर एक जांच के साथ तय किया, मैंने यहां नया कोड पोस्ट किया है: gist.github.com/furycomptuers/4961368
FuryComputers

9

एडेप्टर शुरू में फ़िल्टरिंग नहीं करता है।
जब फ़िल्टरिंग नहीं की जाती है, तो ड्रॉपडाउन सूची खाली है।
इसलिए आपको शुरुआत में फ़िल्टरिंग प्राप्त करना पड़ सकता है।

ऐसा करने के लिए, आप filter()प्रविष्टियाँ जोड़ने के बाद समाप्त कर सकते हैं:

adapter.add("a1");
adapter.add("a2");
adapter.add("a3");
adapter.getFilter().filter(null);

6

आप onFocusChangeListener का उपयोग कर सकते हैं;

TCKimlikNo.setOnFocusChangeListener(new OnFocusChangeListener() {

        @Override
        public void onFocusChange(View v, boolean hasFocus) {
            if (hasFocus) {
                TCKimlikNo.showDropDown();

            }

        }
    });

6

डेस्टिल का उत्तर लगभग काम करता है, लेकिन इसमें एक सूक्ष्म बग है। जब उपयोगकर्ता पहली बार उस क्षेत्र पर ध्यान केंद्रित करता है जो वह काम करता है, हालांकि यदि वे छोड़ देते हैं और फिर फ़ील्ड पर लौटते हैं तो यह ड्रॉप डाउन नहीं दिखाएगा क्योंकि mPopupCanBeUpdated का मान तब भी गलत होगा जब वह छिपा हुआ था। फिक्स onFocusChanged विधि को बदलने के लिए है:

@Override
protected void onFocusChanged(boolean focused, int direction,
        Rect previouslyFocusedRect) {
    super.onFocusChanged(focused, direction, previouslyFocusedRect);
    if (focused) {
        if (getText().toString().length() == 0) {
            // We want to trigger the drop down, replace the text.
            setText("");
        }
    }
}

लेकिन इसका मतलब यह भी है कि पाठ को रीसेट किया जाएगा (हालांकि यह आमतौर पर ठीक है) ...
एंड्रॉइड डेवलपर

3

CustomAutoCompleteTextView बनाने के लिए। 1. ओवरराइड सेट थ्रेशोल्ड, पर्याप्तToFilter, onFocusChanged विधि

public class CustomAutoCompleteTextView  extends AutoCompleteTextView { 

    private int myThreshold; 

    public CustomAutoCompleteTextView  (Context context) { 
        super(context); 
    } 

    public CustomAutoCompleteTextView  (Context context, AttributeSet attrs, int defStyle) { 
        super(context, attrs, defStyle); 
    } 

    public CustomAutoCompleteTextView  (Context context, AttributeSet attrs) { 
        super(context, attrs); 
    } 
     //set threshold 0.
    public void setThreshold(int threshold) { 
        if (threshold < 0) { 
            threshold = 0; 
        } 
        myThreshold = threshold; 
    } 
    //if threshold   is 0 than return true
    public boolean enoughToFilter() { 
         return true;
        } 
    //invoke on focus 
    protected void onFocusChanged(boolean focused, int direction,
            Rect previouslyFocusedRect) {
                    //skip space and backspace 
        super.performFiltering("", 67);
        // TODO Auto-generated method stub
        super.onFocusChanged(focused, direction, previouslyFocusedRect);

    }

    protected void performFiltering(CharSequence text, int keyCode) {
        // TODO Auto-generated method stub
        super.performFiltering(text, keyCode);
    }

    public int getThreshold() { 
        return myThreshold; 
    } 
}

3

कोशिश करो

    searchAutoComplete.setThreshold(0);
    searchAutoComplete.addTextChangedListener(new TextWatcher() {
                @Override
                public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
                }

                @Override
                public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {//cut last probel
                    if (charSequence.length() > 1) {
                        if (charSequence.charAt(charSequence.length() - 1) == ' ') {
                            searchAutoComplete.setText(charSequence.subSequence(0, charSequence.length() - 1));
                            searchAutoComplete.setSelection(charSequence.length() - 1);
                        }
                    }
                   }


                @Override
                public void afterTextChanged(Editable editable) {
                }
            });


    //when clicked in autocomplete text view
        @Override
        public void onClick(View view) {
            switch (view.getId()) {
              case R.id.header_search_etv:
                    if (searchAutoComplete.getText().toString().length() == 0) {
                        searchAutoComplete.setText(" ");
                    }
             break;
            }
        }):

3

बस इस विधि को स्पर्श पर क्लिक करें या autoCompleteTextView या जहाँ आप चाहते हैं की घटना पर क्लिक करें।

autoCompleteTextView.showDropDown()

0

यह मेरे लिए काम कर रहा है, छद्म कोड:

    public class CustomAutoCompleteTextView extends AutoCompleteTextView {
    public CustomAutoCompleteTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    public boolean enoughToFilter() {
        return true;
    }

    @Override
    protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
        super.onFocusChanged(focused, direction, previouslyFocusedRect);
        if (focused) {
            performFiltering(getText(), 0);
        }
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        this.showDropDown();
        return super.onTouchEvent(event);
    }
}


0

बस जावा में अपने onCreate मेथड को पेस्ट करें

final ArrayAdapter<String> arrayAdapter = new ArrayAdapter<>(
            this, android.R.layout.simple_spinner_dropdown_item,
            getResources().getStringArray(R.array.Loc_names));

    textView1 =(AutoCompleteTextView) findViewById(R.id.acT1);
    textView1.setAdapter(arrayAdapter);

    textView1.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(final View arg0) {
            textView1.setMaxLines(5);
            textView1.showDropDown();

        }
    });

और यह आपके Xml फ़ाइल के लिए ...

<AutoCompleteTextView
            android:layout_width="200dp"
            android:layout_height="30dp"
            android:hint="@string/select_location"
            android:id="@+id/acT1"
            android:textAlignment="center"/>

और मान के तहत string.xml में एक सरणी बनाएँ ...

<string-array name="Loc_names">

        <item>Pakistan</item>
        <item>Germany</item>
        <item>Russia/NCR</item>
        <item>China</item>
        <item>India</item>
        <item>Sweden</item>
        <item>Australia</item>
    </string-array>

और आप जाने के लिए अच्छे हैं।


0

सात साल बाद, दोस्तों, समस्या वही रहती है। यहां एक फ़ंक्शन के साथ एक वर्ग है जो किसी भी स्थिति में खुद को दिखाने के लिए उस बेवकूफ पॉप-अप को मजबूर करता है। आपको बस अपने AutoCompleteTextView पर एक एडाप्टर सेट करना है, उसमें कुछ डेटा जोड़ना है, और showDropdownNow()कभी भी फ़ंक्शन को कॉल करना है।

क्रेडिट @ वावरा को। यह उसके कोड पर आधारित है।

import android.content.Context
import android.util.AttributeSet
import android.widget.AutoCompleteTextView

class InstantAutoCompleteTextView : AutoCompleteTextView {

    constructor(context: Context) : super(context)

    constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs)

    constructor(context: Context?, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr)

    override fun enoughToFilter(): Boolean {
        return true
    }

    fun showDropdownNow() {
        if (adapter != null) {
            // Remember a current text
            val savedText = text

            // Set empty text and perform filtering. As the result we restore all items inside of
            // a filter's internal item collection.
            setText(null, true)

            // Set back the saved text and DO NOT perform filtering. As the result of these steps
            // we have a text shown in UI, and what is more important we have items not filtered
            setText(savedText, false)

            // Move cursor to the end of a text
            setSelection(text.length)

            // Now we can show a dropdown with full list of options not filtered by displayed text
            performFiltering(null, 0)
        }
    }
}

0

FocusChangeListener पर, जाँच करें

if (hasFocus) {
            tvAutoComplete.setText(" ")

अपने फ़िल्टर में, बस इस मान को ट्रिम करें:

filter { it.contains(constraint.trim(), true) }

और जब आप इस दृश्य पर ध्यान केंद्रित करेंगे तो यह सभी सुझाव दिखाएगा।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.