[android-developers] Re: Inflating editext into AlertDialog...

2011-09-09 Thread sblantipodi
I know that the solution to the problem is to inflate an edittext into the dialog using views. I'm founding a snippet like that. On Sep 9, 3:17 am, TreKing treking...@gmail.com wrote: On Thu, Sep 8, 2011 at 8:00 PM, sblantipodi perini.dav...@dpsoftware.orgwrote: what is the working method

Re: [android-developers] Re: Inflating editext into AlertDialog...

2011-09-09 Thread TreKing
On Fri, Sep 9, 2011 at 5:14 AM, sblantipodi perini.dav...@dpsoftware.orgwrote: I know that the solution to the problem is to inflate an edittext into the dialog using views. I'm founding a snippet like that. AlertDialog allows you to set an arbitrary view as its content.

[android-developers] Re: Inflating editext into AlertDialog...

2011-09-09 Thread sblantipodi
how? On Sep 9, 1:40 pm, TreKing treking...@gmail.com wrote: On Fri, Sep 9, 2011 at 5:14 AM, sblantipodi perini.dav...@dpsoftware.orgwrote: I know that the solution to the problem is to inflate an edittext into the dialog using views. I'm founding a snippet like that. AlertDialog

Re: [android-developers] Re: Inflating editext into AlertDialog...

2011-09-09 Thread TreKing
On Fri, Sep 9, 2011 at 11:24 AM, sblantipodi perini.dav...@dpsoftware.orgwrote: how? Try reading the documentation and using the clearly named function. - TreKing

[android-developers] Re: Inflating editext into AlertDialog...

2011-09-09 Thread sblantipodi
Lol, giving this kind of suggestion is always funny. I'm searching a fix to this problem since 15 days and you tell me to read the docs. I don't know if smile or cry :D On Sep 9, 6:39 pm, TreKing treking...@gmail.com wrote: On Fri, Sep 9, 2011 at 11:24 AM, sblantipodi

Re: [android-developers] Re: Inflating editext into AlertDialog...

2011-09-09 Thread TreKing
On Fri, Sep 9, 2011 at 1:52 PM, sblantipodi perini.dav...@dpsoftware.orgwrote: I'm searching a fix to this problem since 15 days and you tell me to read the docs. Well I'm not sure what else to tell you - if you are asking about how to inflate an edittext into the dialog using views., well

[android-developers] Re: Inflating editext into AlertDialog...

2011-09-09 Thread sblantipodi
you asked, the problem is? I answered: that it doesn't show the softkeyboard automatically on android 2.3 or older when the alert is shown also if the editext is selected by default. it does show the softkeyboard on android 3.2. I can't belive that on a OS defined smart it is not possible to

Re: [android-developers] Re: Inflating editext into AlertDialog...

2011-09-09 Thread TreKing
On Fri, Sep 9, 2011 at 2:55 PM, sblantipodi perini.dav...@dpsoftware.orgwrote: you asked, the problem is? I answered: that it doesn't show the softkeyboard automatically on android 2.3 or older when the alert is shown also if the editext is selected by default. it does show the

[android-developers] Re: Inflating editext into AlertDialog...

2011-09-09 Thread sblantipodi
Probably if you don't have anything else to add there is someone else that have something to add and that can help us, I hope. On Sep 9, 10:10 pm, TreKing treking...@gmail.com wrote: On Fri, Sep 9, 2011 at 2:55 PM, sblantipodi perini.dav...@dpsoftware.orgwrote: you asked, the problem is?

[android-developers] Re: Inflating editext into AlertDialog...

2011-09-08 Thread sblantipodi
void alertInputStr(String title, String message, int numeroCampoEditabile) { AlertDialog.Builder alertI = new AlertDialog.Builder(this); final int num = numeroCampoEditabile; alertI.setTitle(title); alertI.setMessage(message); input = new EditText(this);

Re: [android-developers] Re: Inflating editext into AlertDialog...

2011-09-08 Thread TreKing
On Thu, Sep 8, 2011 at 8:00 AM, sblantipodi perini.dav...@dpsoftware.orgwrote: *code* OK ... and the problem is ... ? - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit

[android-developers] Re: Inflating editext into AlertDialog...

2011-09-08 Thread sblantipodi
that it doesn't show the softkeyboard automatically on android 2.3 or older when the alert is shown also if the editext is selected by default. it does show the softkeyboard on android 3.2. On Sep 8, 3:12 pm, TreKing treking...@gmail.com wrote: On Thu, Sep 8, 2011 at 8:00 AM, sblantipodi

Re: [android-developers] Re: Inflating editext into AlertDialog...

2011-09-08 Thread TreKing
On Thu, Sep 8, 2011 at 12:37 PM, sblantipodi perini.dav...@dpsoftware.orgwrote: that it doesn't show the softkeyboard automatically on android 2.3 or older when the alert is shown also if the editext is selected by default. it does show the softkeyboard on android 3.2. This just came up in

[android-developers] Re: Inflating editext into AlertDialog...

2011-09-08 Thread sblantipodi
but I think that there is another way to prompt a user for an input that shows the softkeyboard automatically. what is the working method to do this? On Sep 8, 7:54 pm, TreKing treking...@gmail.com wrote: On Thu, Sep 8, 2011 at 12:37 PM, sblantipodi perini.dav...@dpsoftware.orgwrote: that

Re: [android-developers] Re: Inflating editext into AlertDialog...

2011-09-08 Thread TreKing
On Thu, Sep 8, 2011 at 8:00 PM, sblantipodi perini.dav...@dpsoftware.orgwrote: what is the working method to do this? There didn't seem to be one, from what I remember from that last discussion. -