Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

in my app, i have used the two-pane preference screen as given in the API Demo. now, in edit text preference, i have an option to login in picasa. after the user inputs his username and password, how to link that data to my activity? how can i get that data and write it in preference file?

share|improve this question

1 Answer

    final EditText userNameTextBox = (EditText) findViewById(R.id.loginfield_username);
    final EditText passwordTextBox = (EditText) findViewById(R.id.loginfield_password);
    String userName = usernameTextBox.getText().toString();
    String password = passwordTextBox.getText().toString();
share|improve this answer
Is that what you need? – tjsumpthun Jul 27 '11 at 2:55
but how to handle the default buttons? (OK, CANCEL) do i need to create my own layout? – Sayak Jul 27 '11 at 3:37

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.