How do I read values from the EditText field?

Asked 1 years ago, Updated 1 years ago, 115 views

I'm learning how to make UI on Android these days. I made a few EditTexts to get the price. What I want to make is to press the button and read the values in EditText.

<EditText android:id="@+id/name" android:width="220px" />

This is my EditText, so how do I get the price in here?

android android-edittext

2022-09-22 10:16

1 Answers

Use getText(). Below is an example.

Button   mButton;
EditText mEdit;

/** /** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    mButton = (Button)findViewById(R.id.button);
    mEdit   = (EditText)findViewById(R.id.edittext);

    mButton.setOnClickListener(
        new View.OnClickListener()
        {
            public void onClick(View view)
            {
                Log.v("EditText", mEdit.getText().toString());
            }
        });
}


2022-09-22 10:16

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.