Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having one EditText in android in which I want the user to enter the text I'll store the db. But, here I am not able to get the value from EditText.

Here is my code,

EditText etUserInfoNewValue = (EditText)findViewById(R.id.etUserInfoNewVal);    
String newValue = etUserInfoNewValue.getText().toString().trim();

How can I get the value from this EditText?

share|improve this question
7  
Increase your accept rate. – hsz Dec 27 '12 at 8:27
4  
put XML file first – Nirav Ranpara Dec 27 '12 at 8:28
2  
Make sure this etUserInfoNewVal ID is getting generated. – paritosh Dec 27 '12 at 8:28
4  
where did u write this code?? – Deepzz Dec 27 '12 at 8:30
2  
0% Accept rate make others sad.:( – Sahil Mahajan Mj Dec 27 '12 at 8:33
show 5 more comments

5 Answers

Put

String newValue = etUserInfoNewValue.getText().toString().trim(); 

inside button's onClicklistener(). If you write this code in onCreate() just after declaring it, it won't have any value at all. So you will get null value.

share|improve this answer

Works fine for me,Check on your case..

Button   buttonTest;  
EditText editText;

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

    buttonTest = (Button)findViewById(R.id.button);
    editText   = (EditText)findViewById(R.id.edittext); //check this point carefully on your program

    buttonTest.setOnClickListener(
        new View.OnClickListener()
        {
            public void onClick(View view)
            {
                Log.v("EditText..", editText.getText().toString().trim());
            }
        });
}
share|improve this answer

May be you need TextView.OnEditorActionListener. BluetoothChat http://developer.android.com/tools/samples/index.html

//BluetoothChat.java:

// Initialize the compose field with a listener for the return key
EditText mOutEditText = (EditText) findViewById(R.id.edit_text_out);
mOutEditText.setOnEditorActionListener(mWriteListener);

// The action listener for the EditText widget, to listen for the return key
private TextView.OnEditorActionListener mWriteListener =
new TextView.OnEditorActionListener() {
public boolean onEditorAction(TextView view, int actionId, KeyEvent event) {
    // If the action is a key-up event on the return key, send the message
    if (actionId == EditorInfo.IME_NULL && event.getAction() == KeyEvent.ACTION_UP) {
        String message = view.getText().toString();
        sendMessage(message);
    }
    if(D) Log.i(TAG, "END onEditorAction");
    return true;
}

};

share|improve this answer

When you will store the EditText String to Database. By seeing at your code it looks that you are immediately storing the Text in String newValue and then storing it in the Database. Change the code of String declaration to onClick() of your button or anything else.

share|improve this answer

Get value from editText,

String getValueEditText = "null";
if (etUserInfoNewValue.getText().toString().trim().length() > 0) {
    getValueEditText = etUserInfoNewValue.getText().toString().trim();
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.