[android-developers] Re: EditText stops displaying characters as I'm typing?

2013-03-13 Thread Chandra Sekhar Nayak
I am finding the same problem in my Kindle tablet. While typing 1st letter its not showing and after that from 2d to 8th letter its showing and there after it is not showing. This issue happens with the edittext of some activities. Some other Activities are having the edittext with same attribu

[android-developers] Re: Edittext - can't type

2013-02-16 Thread Tamilarasi Sivaraj
My post was used for you? On Friday, February 15, 2013 7:01:40 PM UTC+5:30, Sagar Rout wrote: > > Yes i that is what i m trying to tell you and help me if you can > > Thanks > > On Friday, 15 February 2013 15:45:09 UTC+5:30, Tamilarasi Sivaraj wrote: >> >> hi aru you told you only used to emul

[android-developers] Re: Edittext - can't type

2013-02-15 Thread Lew
Tamilarasi Sivaraj wrote: > This is how I fixed it: > >1. Eclipse > Window menu > AVD Manager > > Or use "android avd &". > >1. Select your virtual device and click Edit >2. Under Hardware, Click New >3. Select Keyboard Support then click OK >4. Edit its value to yes >5.

[android-developers] Re: Edittext - can't type

2013-02-15 Thread Tamilarasi Sivaraj
Hi This is how I fixed it: 1. Eclipse > Window menu > AVD Manager 2. Select your virtual device and click Edit 3. Under Hardware, Click New 4. Select Keyboard Support then click OK 5. Edit its value to yes 6. Now you have to click off onto another item in the list, like "A

[android-developers] Re: Edittext - can't type

2013-02-15 Thread Sagar Rout
Yes i that is what i m trying to tell you and help me if you can Thanks On Friday, 15 February 2013 15:45:09 UTC+5:30, Tamilarasi Sivaraj wrote: > > hi aru you told you only used to emulator keypad for typing not used for > your system keyboard right? > > > On Friday, February 15, 2013 10:32:49

[android-developers] Re: Edittext - can't type

2013-02-15 Thread Tamilarasi Sivaraj
hi aru you told you only used to emulator keypad for typing not used for your system keyboard right? On Friday, February 15, 2013 10:32:49 AM UTC+5:30, Sagar Rout wrote: > > I am a newbie in android developement. i am not able to entered or type in > edittext using keyboard and whiledouble clic

[android-developers] Re: EditText hint shows extra spaces when inputType="textpassword"

2012-09-02 Thread Karthikeyan Palaniswamy
Check here! it is marked as resolved. http://stackoverflow.com/questions/7245220/edittext-hint-shows-extra-spaces-when-inputtype-textpassword?rq=1 Op dinsdag 5 januari 2010 03:33:31 UTC+1 schreef csyperski het volgende: > > I am seeing the same behavior, did you find any fix for this? > > On D

[android-developers] Re: EditText selectAll() does not work in ICS

2012-08-27 Thread fhucho
Hi, this works for me: new Handler().post(new Runnable() { @Override public void run() { paidView.selectAll(); } }); On Thursday, February 2, 2012 5:12:54 AM UTC+1, Michel Stéphane Bruno wrote: > > Hi, > > I am trying to programmatically select all the text in an EditText field > when a user tou

[android-developers] Re: edittext focus in tablerow

2012-08-23 Thread Juned Khan
This is the example: * * -- 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

[android-developers] Re: edittext focus in tablerow

2012-08-23 Thread Juned Khan
Hi See this http://lmgtfy.com/?q=requestfocus+android Thanks -- 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-de

[android-developers] Re: EditText not Accepting Soft Keyboard Input from Supporting Activity

2012-03-07 Thread Dancing Fingers
Does anyone know how to debug the soft keyboard and identify what widget it's targeting? Thanks. Chris -- 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

[android-developers] Re: EditText input into array

2012-02-29 Thread minnie me
got it..i put it after the button click now..and i don't have tiime to learn java first..i need to do both. thanks On Feb 29, 8:27 am, TreKing wrote: > On Wed, Feb 29, 2012 at 12:53 AM, minnie me wrote: > > This is my new updated code, it prints out blank input in the > > array...so why is it no

Re: [android-developers] Re: EditText input into array

2012-02-29 Thread TreKing
On Wed, Feb 29, 2012 at 12:53 AM, minnie me wrote: > This is my new updated code, it prints out blank input in the > array...so why is it not storing my user input? > Your variable player is never set to the text after clicking your button. I think you need to spend some time learning Java befor

[android-developers] Re: EditText input into array

2012-02-28 Thread minnie me
This is my new updated code, it prints out blank input in the array...so why is it not storing my user input? public class Screen2 extends Activity { EditText txt1; String player; ArrayList playerList = new ArrayList(); /** Called when the activity is first create

Re: [android-developers] Re: EditText input into array

2012-02-28 Thread TreKing
On Tue, Feb 28, 2012 at 11:46 AM, minnie me wrote: > It doesn't store array and allow me to display it on click That's still quite ambiguous. Read the link I gave you, then please try again, with more detail. Explain what you are doing. Pretend we have no knowledge of your problem since, you kn

[android-developers] Re: EditText input into array

2012-02-28 Thread minnie me
It doesn't store array and allow me to display it on click On Feb 28, 8:45 am, TreKing wrote: > On Mon, Feb 27, 2012 at 9:45 PM, minnie me wrote: > > Add more button and storing to array doesn't quite work > > Would you explain what "doesn't quite work" > means?http://www.catb.org/~esr/faqs

[android-developers] Re: EditText with bitmaps

2012-02-03 Thread gnudark
You can create a style.xml and define the customize the propertie parent="@android:style/Widget.EditText" there. On 2 Fev, 13:24, Robert Slama wrote: > Hi guys, > > is any way how make edittext custumized as is on attached image? > > r^ > >  edittext.png > 23KVerTransferir -- You received this

[android-developers] Re: EditText in ListView footer not visible when the soft keyboard is present

2012-01-31 Thread ivan
The problem is that the list activity is contained in a tab activity that needs to set to adjustPan. When I make the tab activity adjustResize too, everything works as expected. I'm guessing I'll need to work some magic in code. Does anyone have an suggestions on where to start? Thanks. On Jan

[android-developers] Re: Edittext Scrolling

2012-01-31 Thread dmon
Hmm I'm not 100% clear, but I think that you will get the behavior that you want if you extend the EditText class and override the onTouchEvent() method: public boolean onTouchEvent(MotionEvent ev) { boolean canScroll = !this.isFocusable() || !this.isEnabled() ||

[android-developers] Re: EditText in ListView footer not visible when the soft keyboard is present

2012-01-30 Thread ivan
Anyone? On Jan 27, 12:44 pm, ivan wrote: > I have a ListView and I'm placing an EditText view in its footer, but > the soft keyboard blocks the EditText view when it pops up. > > My AndroidManifest has: > > android:name="com.myapp.views.activities.StoresSearchActivity" >             android:labe

[android-developers] Re: Edittext in Listview crashes on Android 2.2.3 on back during editing

2011-12-15 Thread havexz
Thanks a lot poncho. Well that leads to few other questions: Say I have 1000 items and i want to give in-place editing (say not using ListView) so now I have to create 1000 editboxes in a LinearLayout. Can't it make more sense to use ListView so that EditBoxes can be re- cycled? Creating 100 Edi

Re: [android-developers] Re: Edittext in Listview crashes on Android 2.2.3 on back during editing

2011-12-14 Thread poncho
On 12/14/2011 09:13 AM, havexz wrote: thanks for referring. Questions below are still open: OPEN Questions: 1. Is someone else also face this issue? I did, this is how I found the link I sent. 2. Any reason why normal EditText works but EditText in ListView dont? Did you read the thread in t

[android-developers] Re: Edittext in Listview crashes on Android 2.2.3 on back during editing

2011-12-13 Thread havexz
thanks for referring. Questions below are still open: OPEN Questions: 1. Is someone else also face this issue? 2. Any reason why normal EditText works but EditText in ListView dont? 3. Why IME cursor handle is giving issue in ListView but not elsewhere? Regarding "Also is it good to put EditText

Re: [android-developers] Re: EditText resize problem

2011-11-03 Thread Mark-Jan Harte
I've noticed that my Nexus S (Android 2.3) does show multiple lines in Landscape mode, while my Samsung Galaxy S (2.2) does not - for the same app. Is this behavior in any way related to the Android version, or how can I influence this? Thx, Mark-Jan -- You received this message because you a

Re: [android-developers] Re: EditText key press

2011-11-01 Thread Aki
I wouldn't worry about users finding it, my target users will already know them. Anyway, I'll give the custom EditText a shot, otherwise I'll have to figure something else out. Thanks for the help :) -- You received this message because you are subscribed to the Google Groups "Android Develop

Re: [android-developers] Re: EditText key press

2011-11-01 Thread Mark Murphy
On Tue, Nov 1, 2011 at 9:49 AM, Aki wrote: > Thank you for the elaborate answer Mark. I will try out extending EditText. > > You see, I came up with the idea of key combinations because I needed > something corresponding to a shortcut, without taking up screen space. I have no idea what a "shortc

Re: [android-developers] Re: EditText key press

2011-11-01 Thread Aki
Thank you for the elaborate answer Mark. I will try out extending EditText. You see, I came up with the idea of key combinations because I needed something corresponding to a shortcut, without taking up screen space. I am unwilling to use long clicks or gestures as they take too long to execute

Re: [android-developers] Re: EditText key press

2011-11-01 Thread Mark Murphy
On Tue, Nov 1, 2011 at 9:41 AM, Aki wrote: > Surprisingly I am able to detect the key press event of the ENTER key of the > soft keyboard, but not of the character keys. > That doesn't seem like very consistent behaviour, if they don't work, none > of them should work. Whats is special about the E

Re: [android-developers] Re: EditText key press

2011-11-01 Thread Mark Murphy
On Tue, Nov 1, 2011 at 9:33 AM, Aki wrote: > Thats sad. Actually I need to detect Key combos. I figured detecting the key > press events was the best way to proceed. Can you suggest an alternative? > Some way using which I will be able to detect key combinations? I would not recommend using key c

Re: [android-developers] Re: EditText key press

2011-11-01 Thread Aki
Surprisingly I am able to detect the key press event of the ENTER key of the soft keyboard, but not of the character keys. That doesn't seem like very consistent behaviour, if they don't work, none of them should work. Whats is special about the ENTER key? -- You received this message because y

Re: [android-developers] Re: EditText key press

2011-11-01 Thread Aki
Thats sad. Actually I need to detect Key combos. I figured detecting the key press events was the best way to proceed. Can you suggest an alternative? Some way using which I will be able to detect key combinations? I know key combinations are not an Android convention. Still, I would like to try

Re: [android-developers] Re: EditText key press

2011-11-01 Thread Mark Murphy
I'll be surprised if this is possible. For starters, it might not be a keyboard and therefore may not have the concept of "keys", such as: https://market.android.com/details?id=com.access_company.graffiti&hl=en On Tue, Nov 1, 2011 at 9:16 AM, Aki wrote: > Apparently the onKeyListener doesn't wor

[android-developers] Re: EditText key press

2011-11-01 Thread Aki
Apparently the onKeyListener doesn't work for soft keyboards, and I cannot use a TextWatcher as I need the specific KEY_UP and KEY_DOWN events. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-de

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Studio LFP
Ok, I played with it and got it to work. On the Xperia Play (which has a hardware game pad not a hardware keyboard), the problem is it starts with all the text selected so you can't touch anywhere to move the cursor. You need to move the selection handles to unselect part of the text and then t

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Raffaele Sgarro
I really cannot understand what's going on :S The XPeria is the only phone with the hard keyword, isn't it? But if I try in the emulator (which also emulates a hardware keyboard) everything goes fine. I mean, when you long click a View all text is selected (intended, so one can easily erase everyth

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Studio LFP
That worked for all but the Xperia Play. It still selects everything and doesn't let me place a cursor where I want it. You will need to clear that at some point because it prevents clicking on the same view again. This could be bad if the phone goes to sleep or another activity comes up and t

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Raffaele Sgarro
Please, try adding this little patch at line 23 if (mLastTapped == arg0) return; This should be enough 2011/10/7 Studio LFP > Exactly. When I try to touch to move the cursor in an already focused box, > the keyboard dismisses on everything but the HTC Hero on 2.1-update 1. The > Xperia Play

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Studio LFP
Exactly. When I try to touch to move the cursor in an already focused box, the keyboard dismisses on everything but the HTC Hero on 2.1-update 1. The Xperia Play goes into some kind of select text mode the others don't. You may have to check if the view that is clicked on is the one the user is

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Raffaele Sgarro
Oh my god, it's a mess!!! But still I don't understand exactly what happens. I think you do something like 1. Long tap on a view: this shows the soft keyboard and you can type anything 2. Click on the same view: this triggers the mess Is this right? Is the problem when you click in the c

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Studio LFP
I tested it on the following: Xperia Play - Android 2.3.2 Samsung Galaxy Tab (7 in) - Android 2.2 Motorola Droid (Original) - Android 2.2.2 Droid Bionic - Android 2.3.4 HTC Hero - Androi 2.1-update 1 My Xoom is out for the LTE upgrade so I can't test it on that at the moment. It only worked corr

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Raffaele Sgarro
Unfortunately I can't give you my actual app's code, but #1 and #2 are not issues since they are intended :) #3 seems a bug instead. Can you please describe carefully what are the steps to reproduce it? Also the Android runtime version could matter. I can't reproduce that behavior. Thanks for your

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Studio LFP
I'm not hurt by you choosing to go a different path. Just seems like you are leaving a lot on the table that's already written for you by trying to put a square peg into a round hole. I checked out that project and I think you are cutting yourself short here because of the following: 1. Now you

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Raffaele Sgarro
Here is the whole Eclipse project After more than 6 hours working on this, I finally found a solution. It's simpler than what I thought. The key point is using setFocusable()and setFocusableInTouchMode() at the right moments, and manuall

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Raffaele Sgarro
Sorry Steven, I didn't mean to hurt you I appreciate your help a lot, you are the only one which actually coded something, and I believe this is very valuable. The layout approach was my first attempt, but I'm working on something cleaner and I think I have finally found a solution, which I'll post

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Kostya Vasilyev
07.10.2011 21:01, Raffaele Sgarro пишет: Hi Kostya, you must be the author of WiFi manager :) Nice to meet you I am. Just wanted a little widget for myself, then it kind of went out of control :) The problem here is not about visual appearance, it's about EditText behavior :) I agree tha

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Studio LFP
etNew.requestFocus(); InputMethodManager mgr = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE); mgr.showSoftInput( etNew, InputMethodManager.SHOW_IMPLICIT ); There, add that to the case: TYPE_EDIT before the break and your done. And yes, there is a reason to make your

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Raffaele Sgarro
I already told you that I tried a similar approach with a ViewSwitcher. There is no need to extend a LinearLayout for this task if there is a pre built ViewSwitcher. The problem with this pattern is that the user click is eaten by the SwapView, so the user has to click another time in the EditText

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Studio LFP
Along with the above code you could add an "Ok" button to the side of the edit text to accept the input and revert back to a TextView. Steven Studio LFP http://www.studio-lfp.com On Friday, October 7, 2011 12:02:52 PM UTC-5, Studio LFP wrote: > > Using a simple technique, and should be usable a

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Studio LFP
Using a simple technique, and should be usable anywhere. http://schemas.android.com/apk/res/android"; android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> public class SwapView extends LinearLayout { public static final int TYPE_TEX

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Raffaele Sgarro
Hi Kostya, you must be the author of WiFi manager :) Nice to meet you The problem here is not about visual appearance, it's about EditText behavior :) I agree that UIs should be as intuitive as possible, so I can make you an example of what I want to implement. Imagine to have a 7x7 table of TextV

Re: [android-developers] Re: EditText with custom behavior

2011-10-07 Thread Kostya Vasilyev
Some of the things can be done with drawable state list(s) and stuff. The standard EditText uses a state-list drawable for its background, it can be found under: android-sdk\platforms\platform-X\data\drawable. The name can be found by looking in the platform's styles.xml: Re: [android-developers] Re: EditText with custom behavior
I can't use your code because your technique is only suitable for a RelativeLayout. In a LinearLayout there is no way to stack views and playing with their visibility. Of course, I could take your approach and find a way to have a floating EditText which is exactly over the TextView (ie an overlay)

Re: [android-developers] Re: EditText with custom behavior

You could still use my code but instead of using it straight, you could just wrap it in a custom view. So instead of just a TextView or EditView, use the above code wrapped in a custom View and have the TextView/EditView inside it. Use the swap code there and it would actually a bit more simpl

Re: [android-developers] Re: EditText with custom behavior

Thanks for your reply, but in my real application I have two nested LinearLayout which make up a table. This table is comprised of CustomEditText, so your solution isn't appliable here. I appreciate your effort, but I need a solution based on the above pattern. I also tried to use a ViewSwitcher to

[android-developers] Re: EditText with custom behavior

Here is something I came up. I haven't worked out all the details, but maybe this will get you started. It works by using a RelativeLayout and when you tap on a TextView, it just sets the bounds of an EditText to match the TextView. It then hides the TextView and layers the EditText on the invi

[android-developers] Re: EditText with custom behavior

Link to pastebin I hope someone can help me. It seemed a trivial task when I designed my project, but know I really can't go on. I pasted a self contained Android activity with my custom widget. You only need to create a new Android project with the following sett

[android-developers] Re: EditText with custom behavior

package com.example.custom.edit.text; import android.app.Activity; import android.content.Context; import android.graphics.Color; import android.os.Bundle; import android.view.View; import android.widget.EditText; import android.widget.LinearLayout; public class CustomEditTextActivity extends Act

[android-developers] Re: EditText with custom behavior

public class CustomEditText extends EditText { //code here } -- 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-deve

Re: [android-developers] Re: EditText and the unwanted Quick Search Box

Hello Alvaro, I'm glad you got this worked out. This whole thing with the Edit Text is weird in so many ways. Like you I ended up getting around it after a lot of trial and error. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post t

Re: [android-developers] Re: EditText and the unwanted Quick Search Box

Problem fixed, although I have no idea why it was yielding this error. On my code I was initializing a progress dialog as follows: dialogWait = ProgressDialog.show(*this*, "", getResources().getString(R.string.msg_please_wait), *true*, *true*); dialogWait.setOnCancelListener(*new* OnCance

[android-developers] Re: EditText and the unwanted Quick Search Box

I'm facing the same problem here, but under different circumstances. I've also a standard and simple EditText, but my Avtivity does not have any special behaviour. At first, it's superclass implemented OnClickListener, which was overridden by the activity, and we removed that. Each callback fun

Re: [android-developers] Re: EditText with tiled background

Hi , Can anyone share working customseekbar example please Thanks in Advance.. On Thu, Sep 8, 2011 at 7:48 PM, Richard Lalancette < richard.lalance...@gmail.com> wrote: > You can create an xml file for your background. > In that XML file, you add an item called bitmap. > On the bitmap item,

[android-developers] Re: EditText with tiled background

You can create an xml file for your background. In that XML file, you add an item called bitmap. On the bitmap item, you apply a PNG that can tile and set the tile mode to repeat. Example found here http://www.mokasocial.com/2011/02/create-a-custom-styled-ui-slider-seekbar-in-android/ http://s

[android-developers] Re: EditText box doesn't work the same way in PopupWindow as in AlertDialog

I've noticed this behavior in the built-in Android apps as well, sometimes you cannot long tap on fields.I think it's probably a bug. On Aug 27, 4:50 am, Frank wrote: > Hi Dan, > > Actually, the PopupWindow was made focusable. I can tap on EditText > and use the keyboard to input text. But ju

[android-developers] Re: EditText box doesn't work the same way in PopupWindow as in AlertDialog

Hi Dan, Actually, the PopupWindow was made focusable. I can tap on EditText and use the keyboard to input text. But just the long press/double tap won't select any text. Frank On Aug 26, 12:19 pm, IcedNet wrote: > http://developer.android.com/reference/android/widget/PopupWindow.html > > Depend

[android-developers] Re: EditText box doesn't work the same way in PopupWindow as in AlertDialog

http://developer.android.com/reference/android/widget/PopupWindow.html Depending on how it is instantiated, it may be non-focusable by default... Peace, Dan On Aug 26, 1:09 pm, Frank wrote: > Dear All, > > I am having some difficulty getting an EditText widget work properly > in a PopupWindow

[android-developers] Re: EditText text validation

It sounds like you need a focus change listener. http://developer.android.com/reference/android/view/View.OnFocusChangeListener.html On Aug 9, 12:36 am, yoav bbb wrote: > So. > The validate function must be called when ressing a button? > no option to call the function when user leaves the te

[android-developers] Re: EditText text validation

So. The validate function must be called when ressing a button? no option to call the function when user leaves the textbox - to the backgour or to another control? On 9 אוגוסט, 06:24, TreKing wrote: > On Sun, Aug 7, 2011 at 10:57 PM, yoav bbb wrote: > > Where is the hook for the validate fu

[android-developers] Re: EditText and the unwanted Quick Search Box

I believe that I've come up with a work-around - at least in my case. I don't know why this works, but the problem hasn't reappeared in the last month after making these changes. The app has TTS and Voice Recognition. I was doing all the setup by creating an asynctask from the onCreate of the m

Re: [android-developers] Re: EditText stops displaying characters as I'm typing?

Thank you. -- 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...@googlegroups.com For more optio

Re: [android-developers] Re: EditText stops displaying characters as I'm typing?

OK, did that and listed a couple of Web references from last year that appear to be the same problem. Chuck -- 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 unsubs

Re: [android-developers] Re: EditText stops displaying characters as I'm typing?

Hello e2gGuy, I would encourage you to check out the issue I submitted: http://code.google.com/p/android/issues/list Search for issue 17508. Please add a comment with any additional information you may have and "Star" it. So far it doesn't appear to have been noticed. Thank you. Best Regard

Re: [android-developers] Re: EditText stops displaying characters as I'm typing?

I'd like to add one more device that demos this problem -- Samsung Intercept running 2.2.2. I have an EditText with onKey method used repeatedly to enter data in a grid. After some random number of inputs stops displaying anything in the EditText, but data is entered OK in the grid. Sure would l

Re: [android-developers] Re: EditText stops displaying characters as I'm typing?

Thank you for your suggestion. I gave it a shot and could still reproduce the issue. -- 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, s

Re: [android-developers] Re: EditText stops displaying characters as I'm typing?

What happens if you re-assign it for example: EditText ed=(EditText)findViewById(R.id.editText1); ed.setText(xnumber); and simple re-load the .setText ? Just a thought? On 10/06/2011, Ben S wrote: > Looks great, starred it. :-) > > On Jun 8, 6:02 pm, Eric Carman wrote: >> I've submitte

[android-developers] Re: EditText stops displaying characters as I'm typing?

Looks great, starred it. :-) On Jun 8, 6:02 pm, Eric Carman wrote: > I've submitted a bug report. I don't know what to do about going further > with this. > > I setup an inherited class so that I could throw some logging into the > EditText in hopes of finding a pattern or blip. No joy. > > Bug:

[android-developers] Re: EditText stops displaying characters as I'm typing?

I've submitted a bug report. I don't know what to do about going further with this. I setup an inherited class so that I could throw some logging into the EditText in hopes of finding a pattern or blip. No joy. Bug: 17508 Please feel free to elaborate or correct anything I might have said. T

[android-developers] Re: EditText stops displaying characters as I'm typing?

I actually looked at that in the Android repository as well...didn't get too deep into it, just as far as you posted. I can replicate the problem personally on a Galaxy S (Fascinate) running 2.2.1, a Nexus One running 2.3.3, and the emulator running 2.1. A couple of friends let me test on their D

[android-developers] Re: EditText stops displaying characters as I'm typing?

The following extracts from IInputConnectionWrapper shed a little light on this - no solution, but a little light. This appears to be the area where the error is occurring. As such, either the mInputConnection is returning null or the isActive method is returning false case DO_END

[android-developers] Re: EditText and the unwanted Quick Search Box

FWIW, I've never seen this on my Nexus One 2.3.4 On Jun 7, 8:04 am, Eric Carman wrote: > Additional information. > > On the Nexus One (2.3.4 stock w/stock keyboard), when the app starts, > touching the EditText will bring up the soft keyboard in one of the > following states: > > 1. The keyboard

[android-developers] Re: EditText and the unwanted Quick Search Box

Additional information. On the Nexus One (2.3.4 stock w/stock keyboard), when the app starts, touching the EditText will bring up the soft keyboard in one of the following states: 1. The keyboard will have the punctuation gallery displayed (? ! , etc.) When in this state, typing will work as e

[android-developers] Re: EditText stops displaying characters as I'm typing?

Thank you for responding Ben. I've also added an "Enter" key button next to the text view, and may go the route you describe. Right now, I'm still trying to hunt down the root cause if I can. I mean, it's an edit text for crying out loud! This should be simple For a while I thought that p

[android-developers] Re: EditText stops displaying characters as I'm typing?

Sorry for the late reply...I've been on vacation. Just before I left I found that any "extraneous" code I executed within the OnKeyListener would cause the issue to reproduce (I also tried several other callback methods such as onKey, etc. and those produced the same result). If there was any oth

[android-developers] Re: EditText and the unwanted Quick Search Box

System Logs showing the Quick Search Box being triggered. Here the app begins to be displayed. - 06-06 07:10:54.837: INFO/ActivityManager(96): Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x102000

[android-developers] Re: EditText stops displaying characters as I'm typing?

As this is an on-again, off-again problem, it appears to be on again. I can reproduce this on a G-Slate. Back to square one -- 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@google

[android-developers] Re: EditText and the unwanted Quick Search Box

Unfortunately, I was able to reproduce this problem today. As such, I believe we can conclude that Voice Recognition had nothing to do with this issue. Back to square one. Has anyone else run into this issue? -- You received this message because you are subscribed to the Google Groups "Android

[android-developers] Re: EditText stops displaying characters as I'm typing?

Testing seems to indicate that the work I was doing in the OnKeyListener had some sort of impact, albeit intermittently. I've modified the OnKeyListener to send a message to a handler and that seems to keep everything in order. Since one of the things I was doing in the listener, (when the enter k

[android-developers] Re: EditText stops displaying characters as I'm typing?

Interesting. I've done as you have suggested (although I'm using the OnKeyListener, the OP is using the editor action listener) and so far no issues. I need to test on a different device to be sure (the one that most frequently demonstrated this issue) and since it is an intermittent problem, I sup

[android-developers] Re: EditText stops displaying characters as I'm typing?

Simply question: Does the problem happen if you remove your editor action listener? On May 30, 4:21 am, Eric Carman wrote: > I have run into this as well. The edit text will accept entry without > issue, then it just stops displaying the text entered, but it is there > because the getText will f

[android-developers] Re: EditText stops displaying characters as I'm typing?

I have run into this as well. The edit text will accept entry without issue, then it just stops displaying the text entered, but it is there because the getText will find it. Like you, I originally had the property set, but had to get rid of it as it seemed to be causing other issues. This erro

Re: [android-developers] Re: EditText Issue

If you want a quick and dirty solution you could try putting an EditText over a TextView, with an OnTextChanged listener set to immediately add what you've typed to the TextView. If you want a clean solution, however, I would advice going with TreKing's suggesting of extending the EditText. On Fri

Re: [android-developers] Re: EditText Issue

On Fri, Apr 15, 2011 at 7:44 AM, Bobbie wrote: > It's called real time text. > Ah. > With the RTT standard, you are supposed to send each character typed, as > you type it, so it's actually a great chat app for what I need to do. > Ah. It's just that the cursor has to stay at the end so the

[android-developers] Re: EditText Issue

It's called real time text. With the RTT standard, you are supposed to send each character typed, as you type it, so it's actually a great chat app for what I need to do. It's just that the cursor has to stay at the end so they can't go back and insert text in the middle of the message. Thanks f

[android-developers] Re: EditText in Activity show keyboard immediatly

I solved using android:windowSoftInputMode="stateHidden" Tag in manifest file for my activity. Thanks! On 11 Apr, 11:12, tremendoustur...@gmail.com wrote: > You can suppress the keyboard show using InputMethodManager in   > onFocusChanged listener. > > On Apr 11, 2011 4:59pm, pedr0 wrote: > >

[android-developers] Re: EditText in Activity show keyboard immediatly

How do that? On 11 Apr, 11:05, luiX_ wrote: > Have you tried to manually set the initial focus to any other element in the > activity? > El 11/04/2011 10:59, "pedr0" escribió: > > > > > > > > > Hi at all, > > > I have an activity with one EditText in layout, when Activity is > > showed immediat

[android-developers] Re: EditText to filter a listview

I think the problem is that your RestaurantInfo needs to implement toString() so that it can be filtered on correctly. On Apr 2, 12:19 pm, "Igor Nesralla Ribeiro" wrote: > Hi, > > i have a edittext and a listview ... I want to do thiswhen the users > type on a edittext  this will filter a lis

[android-developers] Re: EditText to filter a listview

The xml file in which you defined the listview add one android property filtertext. You don't have to change anything in code. On Apr 2, 9:19 am, "Igor Nesralla Ribeiro" wrote: > Hi, > > i have a edittext and a listview ... I want to do thiswhen the users > type on a edittext  this will filte

[android-developers] Re: Edittext landscape - not full screen

The answer is this: mEditText.setImeOptions(EditorInfo.IME_FLAG_NO_EXTRACT_UI); if anyone else looks for it! On Mar 2, 10:40 am, André wrote: > In my app my edittext changes to full screen when it's focused and in > landscape. I have seen apps that has worked around some how so that > the soft

[android-developers] Re: Edittext max characters - not set max

Thanks Hari that was what I was looking for. The same goes for strings right? So what ever size could be put in a string can be put in a edittext? Or should I use string[] for that instead of a normal string? On Jan 26, 8:05 pm, Hari Edo wrote: > I think Andre was looking for a design limit, n

[android-developers] Re: Edittext max characters - not set max

I think Andre was looking for a design limit, not how to set one. The control can handle many pages of text, even with spanning styled markup. The EULA which I saw on one Android tablet was shown in a simple text view, and it was about fifty pages of text on the tablet. (The EditText control sho

  1   2   3   >