Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9273233
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T16:03:52+00:00 2026-06-18T16:03:52+00:00

I have an application with an AlertDialog that shows a single EditText. I followed

  • 0

I have an application with an AlertDialog that shows a single EditText. I followed the Android developers guide to do it, but I can’t find how to get the data entered by the user.

The custom layout only has an EditText:

<EditText
    android:id="@+id/license_value"
    android:inputType="text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="@string/license" />

I’m using a DialogFragment to create the dialog. To get the data back when the user clicks the ok button I’m using an interface.

public class EditLicenseDialogFragment extends DialogFragment {

    public interface EditLicenseDialogListener {
        public void onDialogPositiveClick(DialogFragment dialog, String value);
    }

    private EditLicenseDialogListener mListener;

    // Override the Fragment.onAttach() method to instantiate the NoticeDialogListener
    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
        // Verify that the host activity implements the callback interface
        try {
            // Instantiate the NoticeDialogListener so we can send events to the host
            mListener = (EditLicenseDialogListener) activity;
        } catch (ClassCastException e) {
            // The activity doesn't implement the interface, throw exception
             throw new ClassCastException(activity.toString()
                    + " must implement NoticeDialogListener");
        }
    }

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        // Use the Builder class for convenient dialog construction
        AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());

        builder.setTitle(R.string.new_license);

        LayoutInflater inflater = getActivity().getLayoutInflater();

        builder.setView(inflater.inflate(R.layout.edit_license, null))

        .setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int id) {
                        // GET VALUE. HOW TO DO IT?
                EditText valueView = (EditText) getActivity().findViewById(R.id.license_value);
                if(valueView == null) Log.d("AA", "NULL");
                else{
                    String value = valueView.getText().toString();
                    mListener.onDialogPositiveClick(EditLicenseDialogFragment.this, value);
                }
            })
        .setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int id) {
                EditLicenseDialogFragment.this.getDialog().cancel();
            }
        }); 

        return builder.create();

    }
}

In my activity I do the following:

public class LicenseListActivity extends FragmentActivity 
    implements EditLicenseDialogFragment.EditLicenseDialogListener{

    ...

    findViewById(R.id.buttonAddLicense).setOnClickListener(
            new View.OnClickListener() {
                public void onClick(View view) {
                    DialogFragment dialog = new EditLicenseDialogFragment(true);
                    dialog.show(getSupportFragmentManager(), "EditLicenseDialogFragment");
                }
            });

    @Override
    public void onDialogPositiveClick(DialogFragment dialog, String value) {
       Log.d("TAG", value);
    }

The EditText I try to retrieve inside the DialogFragment is always NULL. How can I get the value of the EditText?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T16:03:54+00:00Added an answer on June 18, 2026 at 4:03 pm

    I think that’s because view in which you are trying to find your edittext is not correct.

    It should be something like this:

    LayoutInflater inflater = getActivity().getLayoutInflater();
    
    View dialogView = inflater.inflate(R.layout.edit_license, null);
    builder.setView(dialogView)
    .setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int id) {
    
                EditText valueView = (EditText) dialogView.findViewById(R.id.license_value); //here
                if(valueView == null) Log.d("AA", "NULL");
                else{
                    String value = valueView.getText().toString();
                    mListener.onDialogPositiveClick(EditLicenseDialogFragment.this, value);
                }
            })
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have application that is up more than 3 days. I can see in
I'm trying to create an application that can use the android as a fax
I have this code but in my Android Emulator 4.2 I get the follow
i want to have in my application an alertdialog, that has its message updated
I have an Android application that displays a list of names using checkboxes. I
I have an android application that scans the sd-card and plays file that are
I've been working on this application but have come across a problem that I
I'm writing my first Android application and I have one activity that I'd like
I have an Android application that works with sms messages. When new sms message
I have an AlertDialog in my application. It contains a list of custom views

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.