Re: [android-developers] EditText behaving weirdly

2011-02-27 Thread Richard Marsh
Ok. This is going to be pretty long. Posted below is the onCreateDialog and onPrepareDialog. Another, possible related issue is that when the screen rotates to landscape mode, the dialog box is opened again for reasons unknown. @Override protected Dialog onCreateDialog(int id) { f

Re: [android-developers] EditText behaving weirdly

2011-02-26 Thread Justin Anderson
The code relevant to the problem... That way we might be able to see what is causing the behavior On Feb 27, 2011 12:08 AM, "Rajesh Kumar" wrote: > May be You r using setText(). Cursor will come to begining position. > > On Sat, Feb 26, 2011 at 5:58 PM, Richard Marsh < richardandrewma...@gmail.com

Re: [android-developers] EditText behaving weirdly

2011-02-26 Thread Rajesh Kumar
May be You r using setText(). Cursor will come to begining position. On Sat, Feb 26, 2011 at 5:58 PM, Richard Marsh wrote: > Which code wold you like to see? > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group

Re: [android-developers] EditText behaving weirdly

2011-02-26 Thread Richard Marsh
Which code wold you like to see? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegro

Re: [android-developers] EditText behaving weirdly

2011-02-25 Thread Justin Anderson
Code? On Fri, Feb 25, 2011 at 6:49 AM, Richard Marsh wrote: > I have a pretty weird situation. I have an expandable listview. When you > click on the child item, a dialog opens up and you can edit some text to > save. The dialog is created with a xml layout and using an inflater at > runtime. I

[android-developers] EditText behaving weirdly

2011-02-25 Thread Richard Marsh
I have a pretty weird situation. I have an expandable listview. When you click on the child item, a dialog opens up and you can edit some text to save. The dialog is created with a xml layout and using an inflater at runtime. I also populate the edit text field with a value. For some reason, th