पाठ बदलें श्रोता पर Android


265

मेरी एक स्थिति है, जहां दो क्षेत्र हैं। field1और field2। मैं केवल इतना करना चाहता हूं कि field2जब field1बदला जाए और इसके विपरीत खाली हो । इसलिए अंत में केवल एक फ़ील्ड पर सामग्री है।

field1 = (EditText)findViewById(R.id.field1);
field2 = (EditText)findViewById(R.id.field2);

field1.addTextChangedListener(new TextWatcher() {

   public void afterTextChanged(Editable s) {}

   public void beforeTextChanged(CharSequence s, int start,
     int count, int after) {
   }

   public void onTextChanged(CharSequence s, int start,
     int before, int count) {
      field2.setText("");
   }
  });

field2.addTextChangedListener(new TextWatcher() {

   public void afterTextChanged(Editable s) {}

   public void beforeTextChanged(CharSequence s, int start,
     int count, int after) {
   }

   public void onTextChanged(CharSequence s, int start,
     int before, int count) {
     field1.setText("");
   }
  });

यह ठीक काम करता है अगर मैं संलग्न addTextChangedListenerकरने के लिए field1केवल, लेकिन जब मैं दोनों क्षेत्रों के लिए यह करना अनुप्रयोग क्रैश हो। जाहिर है क्योंकि वे अनिश्चित काल तक एक-दूसरे को बदलने की कोशिश करते हैं। एक बार field1परिवर्तन होने के बाद field2इस क्षण field2में परिवर्तन होता है इसलिए यह स्पष्ट हो जाएगा field1और इसी तरह ...

क्या कोई समाधान सुझा सकता है?


नए उपयोगकर्ताओं के लिए, स्ट्रिंग के एक अवलोकनीय क्षेत्र का उपयोग करके दो तरह से डेटा-बाइंडिंग के लिए जाएं, यहां दिए गए सभी समाधान starting waiting blocking gc allocइस प्रकार की त्रुटि उत्पन्न कर सकते हैं , जिससे दुर्घटना भी हो सकती है और लटक भी सकती है .. इसलिए डेटा-बाइंडिंग के लिए जाएं, सुरक्षित और अब Google द्वारा अनुशंसित ..
Maifee Ul Asad

जवाबों:


460

आप केवल चेक को स्पष्ट करने के लिए जोड़ सकते हैं जब क्षेत्र में पाठ खाली न हो (अर्थात जब लंबाई 0 से भिन्न हो)।

field1.addTextChangedListener(new TextWatcher() {

   @Override
   public void afterTextChanged(Editable s) {}

   @Override    
   public void beforeTextChanged(CharSequence s, int start,
     int count, int after) {
   }

   @Override    
   public void onTextChanged(CharSequence s, int start,
     int before, int count) {
      if(s.length() != 0)
        field2.setText("");
   }
  });

field2.addTextChangedListener(new TextWatcher() {

   @Override
   public void afterTextChanged(Editable s) {}

   @Override
   public void beforeTextChanged(CharSequence s, int start,
     int count, int after) {
   }

   @Override
   public void onTextChanged(CharSequence s, int start,
     int before, int count) {
      if(s.length() != 0)
         field1.setText("");
   }
  });

TextWatcher यहाँ के लिए प्रलेखन ।

कृपया नामकरण सम्मेलनों का भी सम्मान करें ।


1
सभी फ़ील्ड को बदलने के बाद कैसे पता लगाएं, क्योंकि, यह हर बार जब यह बदलता है, तो किसी भी बटन को दबाए जाने का पता लगाता है।
राफेल गुइमारेस

20

मुझे पता है कि यह पुराना है, लेकिन किसी दिन फिर से यह आ सकता है।

मुझे एक ऐसी ही समस्या थी जहाँ मैं एक एडिट टेक्स्ट पर सेटटेक्स्ट को कॉल करूँगा और जब मैं नहीं चाहता था तो ऑनटैंकचेंज को कॉल किया जाएगा। मेरा पहला समाधान श्रोता द्वारा किए गए नुकसान को पूर्ववत करने के लिए सेटटेक्स्ट () को कॉल करने के बाद कुछ कोड लिखना था। लेकिन यह बहुत सुरुचिपूर्ण नहीं था। कुछ शोध और परीक्षण करने के बाद मुझे पता चला कि गेटटेक्स्ट () का उपयोग करना स्पष्ट है () पाठ को सेटटेक्स्ट ("") के समान ही साफ करता है, लेकिन चूंकि यह पाठ सेट नहीं कर रहा है इसलिए श्रोता को नहीं बुलाया जाता है, ताकि मेरी समस्या हल कर दी। मैंने अपने सभी सेटटेक्स्ट ("") कॉल को गेटटेक्स्ट () क्लीयर () में बदल दिया और मुझे अब पट्टियों की आवश्यकता नहीं थी, इसलिए शायद यह आपकी समस्या को भी हल कर देगा।

इसे इस्तेमाल करे:

Field1 = (EditText)findViewById(R.id.field1);
Field2 = (EditText)findViewById(R.id.field2);

Field1.addTextChangedListener(new TextWatcher() {

   public void afterTextChanged(Editable s) {}

   public void beforeTextChanged(CharSequence s, int start,
     int count, int after) {
   }

   public void onTextChanged(CharSequence s, int start,
     int before, int count) {
      Field2.getText().clear();
   }
  });

Field2.addTextChangedListener(new TextWatcher() {

   public void afterTextChanged(Editable s) {}

   public void beforeTextChanged(CharSequence s, int start,
     int count, int after) {
   }

   public void onTextChanged(CharSequence s, int start,
     int before, int count) {
     Field1.getText().clear();
   }
  });

11

यदि आप एंड्रॉइड विकास के लिए कोटलिन का उपयोग कर रहे हैं तो आप TextChangedListener()इस कोड का उपयोग करके जोड़ सकते हैं :

myTextField.addTextChangedListener(object : TextWatcher{
        override fun afterTextChanged(s: Editable?) {}

        override fun beforeTextChanged(s: CharSequence?, start: Int, count: Int, after: Int) {}

        override fun onTextChanged(s: CharSequence?, start: Int, before: Int, count: Int) {}
    })

5

एक उत्तर में थोड़ा देर से, लेकिन यहाँ एक पुन: प्रयोज्य समाधान है:

/**
 * An extension of TextWatcher which stops further callbacks being called as 
 * a result of a change happening within the callbacks themselves.
 */
public abstract class EditableTextWatcher implements TextWatcher {

    private boolean editing;

    @Override
    public final void beforeTextChanged(CharSequence s, int start, 
                                                    int count, int after) {
        if (editing)
            return;

        editing = true;
        try {
            beforeTextChange(s, start, count, after);
        } finally {
            editing = false;
        }
    }

    protected abstract void beforeTextChange(CharSequence s, int start, 
                                                     int count, int after);

    @Override
    public final void onTextChanged(CharSequence s, int start, 
                                                int before, int count) {
        if (editing)
            return;

        editing = true;
        try {
            onTextChange(s, start, before, count);
        } finally {
            editing = false;
        }
    }

    protected abstract void onTextChange(CharSequence s, int start, 
                                            int before, int count);

    @Override
    public final void afterTextChanged(Editable s) {
        if (editing)
            return;

        editing = true;
        try {
            afterTextChange(s);
        } finally {
            editing = false;
        }
    }

    public boolean isEditing() {
        return editing;
    }

    protected abstract void afterTextChange(Editable s);
}

इसलिए जब ऊपर प्रयोग किया जाता है, setText()तो TextWatcher के भीतर होने वाली किसी भी कॉल का परिणाम TextWatcher में फिर से नहीं होगा:

/**
 * A setText() call in any of the callbacks below will not result in TextWatcher being 
 * called again.
 */
public class MyTextWatcher extends EditableTextWatcher {

    @Override
    protected void beforeTextChange(CharSequence s, int start, int count, int after) {
    }

    @Override
    protected void onTextChange(CharSequence s, int start, int before, int count) {
    }

    @Override
    protected void afterTextChange(Editable s) {
    }
}

5

मैंने भी इसी समस्या का सामना किया है और stackOverflowअपवादों को प्राप्त करता रहता हूं, और मैं निम्नलिखित समाधान के साथ आता हूं।

edt_amnt_sent.addTextChangedListener(new TextWatcher() {    
    @Override
    public void afterTextChanged(Editable s) {
        if (skipOnChange)
            return;

        skipOnChange = true;
        try {
            //method
        } catch (NumberFormatException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } finally {
            skipOnChange = false;
        }
    }
});

edt_amnt_receive.addTextChangedListener(new TextWatcher() {

    @Override
    public void afterTextChanged(Editable s) {

        if (skipOnChange)
            return;

        skipOnChange = true;
        try {
            //method
        } catch (NumberFormatException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } finally {
            skipOnChange = false;
        }
    }
});

शुरू में बूलियन स्किपऑनचेंज घोषित किया गया = गलत;


1
"स्टैक फुल" मुझे लगता है कि आपका मतलब है स्टैक ओवरफ्लो;)
एक Droid

4

आप hasFocus () विधि का उपयोग कर सकते हैं:

public void onTextChanged(CharSequence s, int start,
     int before, int count) {
     if (Field2.hasfocus()){
         Field1.setText("");
     }
   }

एक कॉलेज असाइनमेंट के लिए मैंने यह परीक्षण किया था कि तापमान तराजू को बदलने के लिए काम कर रहा था क्योंकि उपयोगकर्ता ने उन्हें टाइप किया था। पूरी तरह से काम किया, और यह आसान तरीका है।


1
जब उपयोगकर्ता इनपुट इसमें होते हैं तो editText.setText का क्या? EditText का इस मामले में ध्यान केंद्रित है
एव्जेनी वोरोबी

सबसे अच्छा उपाय ।
सैयद हिसान

3

दूसरे EditTextको खाली करने से पहले स्ट्रिंग चेक करें । अगर Field1खाली है तो फिर ("") में बदलने की आवश्यकता क्यों है? इसलिए आप s.lenght () या किसी अन्य समाधान के साथ अपने स्ट्रिंग के आकार की जांच कर सकते हैं

एक और तरीका है कि आप स्ट्रिंग की जाँच कर सकते हैं:

String sUsername = Field1.getText().toString();
if (!sUsername.matches(""))
{
// do your job
}

2

मैंने इसके लिए अपना विस्तार लिखा, मेरे लिए बहुत उपयोगी था। (Kotlin)

आप केवल इस तरह लिख सकते हैं:

editText.customAfterTextChanged { editable -> 
    //You have accessed the editable object. 
}

मेरा विस्तार:

fun EditText.customAfterTextChanged(action: (Editable?)-> Unit){
    this.addTextChangedListener(object : TextWatcher {
       override fun beforeTextChanged(p0: CharSequence?, p1: Int, p2: Int, p3: Int) {}
       override fun onTextChanged(p0: CharSequence?, p1: Int, p2: Int, p3: Int) {}
       override fun afterTextChanged(editable: Editable?) {
        action(editable)
    }
})}

2
editText.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) {
                if (noteid != -1) {
                    MainActivity.notes.set(noteid, String.valueOf(charSequence));
                    MainActivity.arrayAdapter.notifyDataSetChanged();
                }
            }
            @Override
            public void afterTextChanged(Editable editable) {

            }
        });

इस कोड में नोटिड को मूल रूप से वापस लिया गया तर्क है जिसे इंडेंट में डाला जा रहा है या इंडेंट से गुजारा जा रहा है।

  Intent intent = getIntent();
         noteid = intent.getIntExtra("noteid", -1);

यदि आप अधिक स्पष्ट रूप से समझना चाहते हैं, तो नकारात्मक पक्ष यह कोड मूल रूप से अतिरिक्त कोड है।

how to make the menu or insert the menu in our code , 
    create the  menu folder this the folder created by going into the raw
    ->rightclick->
    directory->name the folder as you wish->
    then click on the directory formed->
    then click on new file and then name for file as you wish ie the folder name file
    and now type the 2 lines code in it and see the magic.

नए एक्टिविटी कोड को नोटीडिटर.जावा नाम दिया गया है, एडिटिंग के उद्देश्य से, मेरा ऐप नोट ऐप है।

package com.example.elavi.notes;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.widget.EditText;
import android.widget.Toast;

import static android.media.CamcorderProfile.get;
public class NoteEditorActivity extends AppCompatActivity {
    EditText editText;
    int noteid;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_note_editor);
        editText = findViewById(R.id.editText);
        Intent intent = getIntent();
         noteid = intent.getIntExtra("noteid", -1);
        if (noteid != -1) {
            String text = MainActivity.notes.get(noteid);
            editText.setText(text);

           Toast.makeText(getApplicationContext(),"The arraylist content is"+MainActivity.notes.get(noteid),Toast.LENGTH_SHORT).show();
        }
        else
        {
            Toast.makeText(getApplicationContext(),"Here we go",Toast.LENGTH_SHORT).show();
            MainActivity.notes.add("");
            noteid=MainActivity.notes.size()-1;
        }
        editText.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) {
                if (noteid != -1) {
                    MainActivity.notes.set(noteid, String.valueOf(charSequence));
                    MainActivity.arrayAdapter.notifyDataSetChanged();
                }
            }
            @Override
            public void afterTextChanged(Editable editable) {

            }
        });
    }
}

1

में Kotlin बस का उपयोग KTX विस्तार समारोह: (यह का उपयोग करता है TextWatcher)

yourEditText.doOnTextChanged { text, start, count, after -> 
        // action which will be invoked when the text is changing
    }


आयात core-KTX:

implementation "androidx.core:core-ktx:1.2.0"

1

हम टेक्स्ट को अपने टेक्स्ट को एडिट करने से पहले किसी फील्ड के लिए टेक्स्टवॉकर को हटा सकते हैं और फिर टेक्स्ट को एडिट करने के बाद वापस जोड़ सकते हैं।

फ़ील्ड 1 और फ़ील्ड 2 दोनों के लिए टेक्स्ट वॉचर्स को अलग-अलग चर के रूप में उन्हें एक नाम देने के लिए घोषित करें: जैसे फ़ील्ड 1 के लिए

private TextWatcher Field_1_Watcher = new TextWatcher() {
    @Override
    public void beforeTextChanged(CharSequence s, int start, int count, int after) {
    }

    @Override
    public void afterTextChanged(Editable s) {
    }

    @Override
    public void onTextChanged(CharSequence s, int start, int before, int count) {

    }

};

तो जैसा कि इसके नाम का उपयोग कर द्रष्टा जोड़ें: field1.addTextChangedListener(Field_1_Watcher)के लिए फ़ील्ड 1 , और field2.addTextChangedListener(Field_2_Watcher)के लिए field2

फ़ील्ड 2 पाठ को बदलने से पहले TextWatcher को हटा दें: field2.removeTextChangedListener(Field_2_Watcher) पाठ को बदलें: field2.setText("")

फिर TextWatcher को वापस जोड़ें: field2.addTextChangedListener(Field_2_Watcher)

दूसरे क्षेत्र के लिए भी ऐसा ही करें


-3

पृष्ठभूमि को गतिशील रूप से onCreateविधि में जोड़ें :

getWindow().setBackgroundDrawableResource(R.drawable.background);

XML से पृष्ठभूमि भी निकालें।

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