संवाद नकारात्मक पॉजिटिव बटन को निष्क्रिय / सक्षम कैसे करें?


111

कृपया नीचे दिए गए कस्टम संवाद को देखें। मेरे पास संवाद पर एक संपादन क्षेत्र है और यदि पाठ क्षेत्र खाली है तो मैं इसे निष्क्रिय करना चाहूंगा positiveButton। मुझे टेक्स्ट फ़ील्ड के लिए एक चार्टलिस्टर मिल सकता है लेकिन मुझे यकीन नहीं है कि मैं positivebuttonउस श्रोता से कैसे अक्षम या सक्षम करने जा रहा हूं ? सकारात्मक और नकारात्मक बटन के लिए संदर्भ क्या है?

 case DIALOG_TEXT_ENTRY:
    // This example shows how to add a custom layout to an AlertDialog
    LayoutInflater factory = LayoutInflater.from(this);
    final View textEntryView = factory.inflate(R.layout.alert_dialog_text_entry, null);
    return new AlertDialog.Builder(AlertDialogSamples.this)
        .setIconAttribute(android.R.attr.alertDialogIcon)
        .setTitle(R.string.alert_dialog_text_entry)
        .setView(textEntryView)
        .setPositiveButton(R.string.alert_dialog_ok, new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int whichButton) {
                /* User clicked OK so do some stuff */
            }
        })
        .setNegativeButton(R.string.alert_dialog_cancel, new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int whichButton) {
                /* User clicked cancel so do some stuff */
            }
        })
        .create();
}

मुझे लगता है कि यह उत्तर आपके सवाल का जवाब देता है [ stackoverflow.com/questions/4291548/… [1]: stackoverflow.com/questions/4291548/…
अलेक्जेंडर कुलाखतीन

धन्यवाद, लेकिन यह जवाब नहीं है। हालांकि यह मदद कर सकता है। क्योंकि यह स्वयं क्लिक करने के बाद बटन को अक्षम कर देता है। जो मुझे नहीं चाहिए। मैं यह दिखाना चाहूंगा कि यह अक्षम है और यह टेक्स्टफील्ड पर निर्भर करता है।
akd

1
if (editTextEmailAddress.getText ()। toString ()। लंबाई () == 0)
SALMAN

मूल रूप से आप अनाम संदर्भ के साथ एक वस्तु बना रहे हैं एक बार यह बनाया है आप इसे फिर से संदर्भ नहीं कर सकते। धन्यवाद।
सलमान

जवाबों:


207

संपूर्ण समाधान के लिए संपादित करें ...

AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setIcon(android.R.drawable.ic_dialog_info);
builder.setTitle("Alert dialog title");
builder.setMessage("This is the example code snippet to disable button if edittext attached to dialog is empty.");
builder.setPositiveButton("PositiveButton",
        new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface arg0, int arg1) {
                // DO TASK
            }
        });
builder.setNegativeButton("NegativeButton",
        new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface arg0, int arg1) {
                // DO TASK
            }
        });

// Set `EditText` to `dialog`. You can add `EditText` from `xml` too.
final EditText input = new EditText(MainActivity.this);

LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(
        LinearLayout.LayoutParams.MATCH_PARENT,
        LinearLayout.LayoutParams.MATCH_PARENT
);
input.setLayoutParams(lp);


builder.setView(input);

final AlertDialog dialog = builder.create();
dialog.show();

// Initially disable the button
((AlertDialog) dialog).getButton(AlertDialog.BUTTON_POSITIVE).setEnabled(false);

// OR you can use here setOnShowListener to disable button at first time.

// Now set the textchange listener for edittext
input.addTextChangedListener(new TextWatcher() {

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

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

    @Override
    public void afterTextChanged(Editable s) {

        // Check if edittext is empty
        if (TextUtils.isEmpty(s)) {
            // Disable ok button
            ((AlertDialog) dialog).getButton(AlertDialog.BUTTON_POSITIVE).setEnabled(false);

        } else {
            // Something into edit text. Enable the button.
            ((AlertDialog) dialog).getButton(AlertDialog.BUTTON_POSITIVE).setEnabled(true);
        }

    }
});

नीचे संपादित इतिहास हैं, जिन्हें कुछ और विवरणों के रूप में संदर्भित किया जा सकता है

यहाँ एक नमूना कोड है, इसे आज़माएँ

AlertDialog.Builder builder = new AlertDialog.Builder(AddSchedule.this);
builder.setIcon(android.R.drawable.ic_dialog_info);
builder.setTitle("Alert dialog title");
builder.setMessage("Dialog message");
builder.setPositiveButton("Button1", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface arg0, int arg1) {
        //DO TASK
    }
});
builder.setNegativeButton("Button2", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface arg0, int arg1) {
        //DO TASK
    }
});

AlertDialog dialog = builder.create();
dialog.show();

// After calling show method, you need to check your condition and enable/disable the dialog buttons 
if (your_condition_true) {
    // BUTTON1 is the positive button
    dialog.getButton(AlertDialog.BUTTON1).setEnabled(false);
}

नकारात्मक बटन के लिए

dialog.getButton(AlertDialog.BUTTON2).setEnabled(false); //BUTTON2 is negative button

बटन आईडी के लिए : संदर्भ अलर्ट_डायलॉग.एक्सएमएल

संपादित:

और setOnShowListener स्तर 8 एपीआई (FroYo) के बाद से, वही करता है,

AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setPositiveButton(android.R.string.ok, null);

AlertDialog dialog = builder.create();
dialog.setOnShowListener(new OnShowListener() {

    @Override
    public void onShow(DialogInterface dialog) {
        if (condition) {
            ((AlertDialog)dialog).getButton(AlertDialog.BUTTON_POSITIVE).setEnabled(false);
        }
    }
});

dialog.show();

संपादित

new AlertDialog.Builder(this)
    .setMessage("This may take a while")
    .setPositiveButton("OK", new android.content.DialogInterface.OnClickListener() {

        @Override
        public void onClick(DialogInterface dialog, int which) {
            ((AlertDialog)dialog).getButton(which).setVisibility(View.INVISIBLE);
            // the rest of your stuff
        }

    }).show();


अगर मैं गलत हूं तो मुझे सुधारो, लेकिन जब तुमने फिर से अलर्टडायॉग कहा, तो इसे फिर से उसकी वस्तु कहा जाता है या अभी भी यह उसी का उपयोग कर रहा है। मुझे इस विधि के बारे में जानकारी नहीं है। क्या आप संक्षेप में बताएंगे? धन्यवाद :)
NovusMobile

स्किमर्स के लिए मैं उस डायलॉग को जोड़ना चाहूंगा। TheButton () केवल AlertDialogs के लिए काम करता है, इसलिए आपको AlertDialog को डायलॉग डालना पड़ सकता है क्योंकि आप पोस्ट में नीचे आते हैं।
नौमेनन

काम न करें - मैं कोड को कम से कम 5x पढ़ता हूं, और यह अभी भी समझ में नहीं आता है कि यह क्यों काम करना चाहिए :) सही उत्तर निक पामर से नीचे है
qxx

@qkx क्या आप समझा सकते हैं कि आप क्या करने की कोशिश कर रहे हैं। क्या आप संबंधित कोड दिखा सकते हैं? और विडंबना मत बनो और नीचे करो।
पंकज कुमार

1
मैं विडंबना नहीं, अशिष्ट होना चाहता था। इसके अलावा मैंने अन-डाउनवोट करने की कोशिश की, लेकिन यह संभव नहीं है ... हालांकि एक बार फिर समस्या के लिए - आपके कोड में टेक्स्ट श्रोता कहां हैं, क्या आप मुझे बता सकते हैं? इससे कोई फर्क नहीं पड़ता कि हालत क्या है, अगर इसे केवल एक बार कहा जाए। यदि आपके पास नीचे निक जैसे पाठ श्रोता नहीं हैं, तो आपके समाधान के लिए काम करना सरल है ... या मैंने कुछ याद किया। या मुझे यह साबित करने के लिए कुछ सरल Android प्रोजेक्ट भेजें;)
qxx

25

इनमें से कोई भी उत्तर वास्तव में समस्या का समाधान नहीं करता है।

मैं इसमें एक EditText के साथ एक कस्टम लेआउट और उस दृश्य पर एक TextWatcher का उपयोग करके इसे पूरा करता हूं।

final LinearLayout layout = (LinearLayout) inflator.inflate(R.layout.text_dialog, null);
final EditText text = (EditText) layout.findViewById(R.id.text_edit);
final AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setView(layout);
// Now add the buttons...
builder.setPositiveButton(R.string.ok, new AlertDialog.OnClickListener() {
    // Left out for brevity...
}
builder.setNegativeButton(R.string.cancel, new AlertDialog.OnClickListener() {
    // Left out for brevity...
}

// Create the dialog
final AlertDialog d = builder.create();

// Now add a TextWatcher that will handle enable/disable of save button
text.addTextChangedListener(new TextWatcher() {
    private void handleText() {
        // Grab the button
        final Button okButton = d.getButton(AlertDialog.BUTTON_POSITIVE);
        if(text.getText().length() == 0) {
            okButton.setEnabled(false);
        } else {
            okButton.setEnabled(true);
        }
    }
    @Override
    public void afterTextChanged(Editable arg0) {
        handleText();
    }
    @Override
    public void beforeTextChanged(CharSequence s, int start, int count, int after) {
        // Nothing to do
    }
    @Override
    public void onTextChanged(CharSequence s, int start, int before, int count) {
       // Nothing to do
    }
});

// show the dialog
d.show();
// and disable the button to start with
d.getButton(AlertDialog.BUTTON_POSITIVE).setEnabled(false);

यह उत्तर अधूरा है, d
Androidguy

D का निर्माण जोड़ने के लिए संपादित किया गया।
निक पाल्मर

4

संवाद का सकारात्मक बटन सक्षम और अक्षम करने के लिए यहां पूरा कोड है:

AlertDialog.Builder builder = new AlertDialog.Builder(this);
LayoutInflater layoutInflater = MainActivity.this.getLayoutInflater();
View view = layoutInflater.inflate(R.layout.dialog,null);

builder.setView(view);
builder.setTitle("Test");
builder.setPositiveButton("ok", new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
        Toast.makeText(MainActivity.this, "Ok clicked", Toast.LENGTH_SHORT).show();
        dialog.dismiss();
    }
});
builder.setNegativeButton("cancel", null);

final AlertDialog alertDialog = builder.create();

alertDialog.show();

EditText editText = (EditText)view.findViewById(R.id.mobile_number);
alertDialog.getButton(AlertDialog.BUTTON_POSITIVE).setEnabled(false);
editText.addTextChangedListener(new TextWatcher() {
    @Override
    public void beforeTextChanged(CharSequence s, int start, int count, int after) {}

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

    @Override
    public void afterTextChanged(Editable s) {
        if (s.length() >= 1) {
            alertDialog.getButton(AlertDialog.BUTTON_POSITIVE).setEnabled(true);
        } else {
            alertDialog.getButton(AlertDialog.BUTTON_POSITIVE).setEnabled(false);

        }
    }
});

1

आप एक श्रोता को संपादित टेक्स्ट बॉक्स में लिख सकते हैं, और बटन को सक्षम या अक्षम करने का प्रयास कर सकते हैं। यह xamarin के लिए एक नमूना कोड है।

var dialog = builder.Create();

dialog.Show();

var btnOk = dialog.GetButton((int)DialogButtonType.Positive).Enabled = false;

_enterTextDialogEditText.AfterTextChanged += (sender, e) => {
  if (!string.IsNullOrEmpty(_enterTextDialogEditText.Text)) {
    dialog.GetButton((int)DialogButtonType.Positive).Enabled = true;
  } else {
    dialog.GetButton((int)DialogButtonType.Positive).Enabled = false;
  }
};

0

डेटाबेस सूची दृश्य से रिकॉर्ड हटाने के लिए आप अपने गेटव्यू () पद्धति में इस कोड का उपयोग करने वाले व्यू होल्डर का उपयोग करें।

viewHb.btn.setOnClickListener (नया OnClickListener () {

                @Override
                public void onClick(View arg0) {
                    // TODO Auto-generated method stub
                    AlertDialog.Builder alertDialog2 = new AlertDialog.Builder(
                            Favorate.this.getParent());

                    // Setting Dialog Title
                    alertDialog2.setTitle("Confirm Delete...");

                    // Setting Dialog Message
                    alertDialog2
                            .setMessage("Are you sure you want delete ?");

                    // Setting Icon to Dialog
                    alertDialog2.setIcon(R.drawable.delete);

                    // Setting Positive "Yes" Btn
                    alertDialog2.setPositiveButton("YES",
                            new DialogInterface.OnClickListener() {
                                public void onClick(DialogInterface dialog,
                                        int which) {
                                    // Write your code here to execute after
                                    // dialog

                                    int id = _items.get(position).id;
                                    db.deleterecord(id);

                                    db.close();
                                }
                            });
                    // Setting Negative "NO" Btn
                    alertDialog2.setNegativeButton("NO",
                            new DialogInterface.OnClickListener() {
                                public void onClick(DialogInterface dialog,
                                        int which) {
                                    // Write your code here to execute after
                                    // dialog

                                    dialog.cancel();
                                }
                            });

                    // Showing Alert Dialog
                    alertDialog2.show();

                }
            });

अधिक पढ़ें


0

यह डायलॉग आपके लिए काम करेगा। ध्यान दें कि उपयोगकर्ता द्वारा पहले से ही टाइप किए गए किसी भी पाठ को संरक्षित करने के बाद स्क्रीन रोटेशन के बाद संवाद खुला रहेगा। यदि आप नहीं चाहते हैं कि ऐसा होने पर आपको अपनी गतिविधि के onStop में खंडन को खारिज करने की आवश्यकता है। NewInstance मेथड सिग्नेचर को आप की जरूरत के अनुसार बदला जा सकता है

import android.app.Activity;
import android.app.Dialog;
import android.app.DialogFragment;
import android.content.DialogInterface;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AlertDialog;
import android.text.Editable;
import android.text.TextWatcher;
import android.widget.EditText;

public class TextViewDialogFragment extends DialogFragment implements DialogInterface.OnClickListener, DialogInterface.OnShowListener, TextWatcher
{
    final static private String TITLE = "title", MESSAGE = "message", IDENTIFIER = "identifier", INPUT_TYPE = "inputType", POSITIVE_TEXT = "pText", NEGATIVE_TEXT = "nText", CANCELABLE = "cancelable";

    public TextViewDialogFragment()
    {
        super();
    }

    static public TextViewDialogFragment newInstance(int title, @Nullable String message, int identifier, int inputType, int positiveText, int negativeText, boolean cancelable)
    {
        TextViewDialogFragment fragement = new TextViewDialogFragment();
        Bundle args = new Bundle();
        args.putInt(TITLE, title);
        args.putString(MESSAGE, message);
        args.putInt(IDENTIFIER, identifier);
        args.putInt(INPUT_TYPE, inputType);
        args.putInt(POSITIVE_TEXT, positiveText);
        args.putInt(NEGATIVE_TEXT, negativeText);
        args.putBoolean(CANCELABLE, cancelable);
        fragement.setArguments(args);
        return fragement;
    }

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState)
    {
        Activity activity =  getActivity();
        Bundle args = getArguments();
        EditText input = new EditText(activity);
        input.setInputType(args.getInt(INPUT_TYPE));
        input.setId(R.id.dialog_edit_text);
        input.addTextChangedListener(this);
        AlertDialog.Builder alert = new AlertDialog.Builder(activity);
        alert.setCancelable(args.getBoolean(CANCELABLE)).setTitle(args.getInt(TITLE)).setMessage(args.getString(MESSAGE)).setView(input).setPositiveButton(args.getInt(POSITIVE_TEXT), this);
        int negativeText = args.getInt(NEGATIVE_TEXT);
        if (negativeText != 0)
        {
            alert.setNegativeButton(negativeText, this);
        }
        AlertDialog dialog = alert.create();
        dialog.setOnShowListener(this);
        return dialog;
    }

    @Override
    public void onShow(DialogInterface dialog)
    {
        // After device rotation there may be some text present.
        if (((EditText)((AlertDialog) dialog).findViewById(R.id.dialog_edit_text)).length() == 0)
        {
            ((AlertDialog) dialog).getButton(AlertDialog.BUTTON_POSITIVE).setEnabled(false);
        }
    }

    @Override
    public void onClick(DialogInterface dialog, int which)
    {
        String text = ((EditText)((AlertDialog) dialog).findViewById(R.id.dialog_edit_text)).getText().toString();
        ((Callbacks) getActivity()).onTextViewDialogResult(which, getArguments().getInt(IDENTIFIER), text);
    }

    @Override
    public void onCancel(DialogInterface dialog)
    {
        ((Callbacks) getActivity()).onTextViewDialogActivityCancelled(getArguments().getInt(IDENTIFIER));
        super.onCancel(dialog);
    }

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

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

    @Override
    public void afterTextChanged(Editable s)
    {
        ((AlertDialog) getDialog()).getButton(AlertDialog.BUTTON_POSITIVE).setEnabled(s.length() > 0);
    }

    void setMessage(String message)
    {
        Bundle args = getArguments();
        args.putString(MESSAGE, message);
        setArguments(args);
    }

    interface Callbacks
    {
        void onTextViewDialogResult(int which, int identity, String text);
        void onTextViewDialogActivityCancelled(int identity);
    }
}

अपनी गतिविधि में कार्यान्वयन जोड़ें (किसी भी प्रकार की गतिविधि ठीक है):

public class Myctivity extends AppCompatActivity implements TextViewDialogFragment.Callbacks
{
...
}

अपनी गतिविधि में डायग्लॉगफ्रैगमेंट इस तरह बनाएं:

final static int SOMETHING = 1;
myDF = TextViewDialogFragment.newInstance(R.string.my_title, "my message", SOMETHING, InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_CAP_WORDS | InputType.TYPE_TEXT_FLAG_CAP_SENTENCES, /* Whatever is best for your user. */    R.string.yay, android.R.string.cancel, true);

अपनी गतिविधि का परिणाम इस तरह से संभालें:

@Override
public void onTextViewDialogResult(int which, int identity, String text)
{
    if (which == AlertDialog.BUTTON_NEGATIVE)
    {
        // User did not want to do anything.
        return;
    }
    // text now holds the users answer.
    // Identity can be used if you use the same fragment for more than one type of question.
}
@Override
public void onTextViewDialogActivityCancelled(int identity)
{
    // This is invoked if you set cancelable to true and the user pressed the back button.
}

आपको संसाधन पहचानकर्ता बनाने की आवश्यकता है ताकि रिस / मानों के तहत इस संसाधन को कहीं और जोड़ दें

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <item name="dialog_edit_text" type="id"/>
</resources> 

-1
if (editTextEmailAddress.getText().toString().length() == 0) {
    btnCancelCross.setEnabled(false);
} else {
    btnCancelCross.setEnabled(true);
}

यह आपको धन्यवाद करने में मदद कर सकता है।


धन्यवाद, लेकिन यह वह नहीं है जिसकी मुझे तलाश है। मैं कस्टम संवाद का उपयोग करके इसे प्राप्त कर सकता हूं और बटन के साथ एक लेआउट बना सकता हूं और उन्हें अक्षम कर सकता हूं। मैं जो देख रहा हूं, वह संवाद के सकारात्मक और नकारात्मक बटन में निर्मित या अक्षम करने का एक तरीका है? यदि आप मेरे द्वारा साझा किए गए कोड को देखेंगे तो आप देखेंगे कि मैं क्या देख रहा हूँ। लेकिन कोड के लिए फिर से धन्यवाद।
akd

2
कृपया, विषय उत्तर पर एक व्यापक पोस्ट करें (बस अपने मौजूदा उत्तर को संपादित करें, अतिरिक्त उत्तर पोस्ट न करें)।
टिम पोस्ट
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.