Motorola Droid :: Somtimes Unable To Put Cursor Where Mis Typed Letter Is / App To Fix It?
Feb 5, 2010
Let me explain :
Let's say I was typing for a bit and I noticed that I mis typed something. If I want to put my cursor where the mis typed letter is, it is not always the easiest thing to do. I noticed on my friends iphone if he were to put the cursor near the letter and hold his finger there a zoomed in window would pop up and alow him to move the cursor to the location he wants to put it.
Is there any app that can do this on the droid?
View 5 Replies
Sep 16, 2010
Simple concept, I feel stupid for asking. Let's say I typed that as "Simple concept, I feel stupid for basking" and tapped the screen to put the cursor after the B in BASKING to delete it, but accidentally inserted before the B. How do I delete that without struggling to get the cursor exactly after the B? On a BB you can just hit the ALT key while hitting delete and it would delete the B after the cursor. I can't seem to figure out a simple typing issue.
View 11 Replies
View Related
Nov 22, 2010
I'd like to know if there's any way to edit the Text by 'dragging' the cursor to the letter you want, rather than switching to the Swype-Edit screen and using the arrows there? Something like what's present on the iPhone(magnifies the text as you drag your finger to move the cursor along).
View 5 Replies
View Related
Nov 2, 2009
I just heard this on another forum, that if you need to change something you typed you have to go to landscape and use the dpad. You supposedly cannot use the touch screen to go back. Can this be true?
View 3 Replies
View Related
Nov 17, 2009
for example the iphone has the lil magnifying glass and you can go through the whole sentence to put the cursor where you want it its horrible and a pain in the @$$, so anyways is there an app out there that fixes this? or is the update in dec. gonna have some NEW feature. and i wish the predictive text was better also i find myself going back and correcting a lot of the words
View 7 Replies
View Related
Nov 11, 2009
The Droid is my first smartphone. Before it I was texting with the dialpad, and the phone would count down how many letters I have left (out of 160, the text msg length). Using the "messaging" icon on the Droid it never says when I'm approaching the text message limit. So is this "messaging" icon really like an instant messenger? It's not GTalk, that's another icon. If I send a 250 character txt message through the "messaging" app, does it get broken into 2 messages for the receiver?
View 3 Replies
View Related
Sep 11, 2010
How do I do a capital letter in text to speech on my droid x? I can get a question mark or period at the end but CAPS man I need CAPS..
View 5 Replies
View Related
Nov 16, 2009
Coming from the Blackberry world I was wondering if someone (BK?) has made it possible to make the touch keyboard Make a Capital letter when holding down the Key..instead of the crazy character menu I get now.?
View 2 Replies
View Related
Dec 23, 2009
Is it somehow possible that instead of:
Button btnNextWord = (Button) this.findViewById(R.id.btnNextWord);
Eclipse automatically generates for me something like:
Button btnNextWord = this.btnNextWord;
or
Button btnNextWord = R.id.getBtnNextWord(this);?
View 1 Replies
View Related
Jul 18, 2010
I discovered by accident that if you tap and then tap and hold on the screen it brings up a zoom box of where the cursor is and you can slide it where you want it.
View 1 Replies
View Related
Apr 9, 2010
Is there a way to increase the size of the cursor or bold it or flag it or something? On some apps I have difficulty finding the cursor while editing and it's a royal pita.
View 1 Replies
View Related
May 10, 2010
Is there a replacement keyboard that has a way to position the cursor without sliding out the useless physical keyboard? I despise the keyboard and would never slide it out if there were another way to move the cursor around.
I wish I liked the Incredible, but I don't. I would pay retail for a Droid without the keyboard and with the cursor function of the Incredible.
View 11 Replies
View Related
Nov 4, 2009
I was watching a video on Android 2.0 (from the Google Conference, I believe) and the presenter show a feature that allowed you to pull up your contact list and simply start "drawing" the letters of the contact you are looking for and it will jump right to it, rather than having to scroll down. For example you would draw "e" then "r" and it would jump right to Eric.
I haven't seen this discussed anywhere else when testing the phone, so I thought either this feature didn't make it or it needs to be enabled or something.
Anyone else seen or know anything about this?
View 5 Replies
View Related
Jul 27, 2010
Do you have a problem with the letter "C" always popping up where you don't want it when your texting or entering info via the tap screen? This is so annoying! LOL! I keep forgetting I have the slide up keyboard to use sometimes.
View 9 Replies
View Related
Nov 12, 2010
I use the hardware keyboard exclusively, but am wanting to use the software keyboard more, figuring that my next phone may only have that. My real problem is figuring out how to move the cursor around in the text. If I want to go back and edit using the hardware keyboard, I just use the d-pad to move back to the spot I need. How do I do that with the software keyboard? Am I forced to tap the screen (which never chooses where I want it, and I have to key pecking at it to get it in the right place)?
View 14 Replies
View Related
Mar 29, 2010
The structure of some of my activities is a simple ListView with a custom CursorAdapter. The cursor is created in onCreate() on the activity from a SQLite database. The problem is that querying the SQLite database can be quite slow at times with lots of data (and let's assume I've already optimized the sql query as much as possible). Because it occurs in onCreate() on the UI thread, I get ugly black screens when opening the activity, which sometimes turn into ANRs, on a slow phone like the G1. I want to load the cursor in a background and show "Loading.." on screen while doing so. I saw AsyncQueryHandler used extensively in the framework, but this seems a solution geared more towards Content Providers and not application-local SQLite databases. I then thought of trying to load the cursor in a background thread, but realize that this might be problematic, as the CursorAdapter should be instantiated in onCreate() and should take a cursor as a parameter. The latest thought I had was to instantiate an empty MatrixCursor in onCreate() and pass that to the cursor adapter, while kicking off a thread/TimerTask to query the database. Then, on database cursor load, call cursorAdapter.change Cursor to the properly filled cursor. This doesn't seem very elegant and seems quite wasteful, however.
View 10 Replies
View Related
Mar 21, 2010
I get records from the system by quering a ContentResolver. I maintain the order of the items in the database. So I want to display the items in the order taken from my database.
How do I merge these two informations?
I am looking after an alternative way now. As what I ideally want is:
Get order of contacts by a custom order held in my database (this involves joining CR with my DB cursor, and doing an order by, later seams it's not possible with CursorJoiner) but there is more, if the join is not unique I want to sort by contact's name as last measure
Which is impossible using Cursor and Joiners, because of the missing feature of order bys, also I need to return a Cursor, as I will be using the in an ExpandableList
Also this translated to TSQL it would look like
select * from contactsdata
left join category on contactsdata.catid=category.id
order by category.pos asc, contact.display_name asc
So I am looking now after an alternative. I have in mind to load in a temporary DB table all data from CR, then do the query on the temporary table where I can join tables and do order bys? How does this sound to you?
View 1 Replies
View Related
Jun 18, 2010
I upgraded to the new beta of swype and since then have found one minor issue. when i try to loop on a letter to do a double letter like the t in the word letter, i have difficulty doing so. I have to make a very large loop that only crosses over the letter, rather than looping on top of it like i used to be able to do. i'm not sure if this is just something to do with a setting that got changed or if it is a bigger issue.
View 14 Replies
View Related
Aug 5, 2010
I'm not referring to textInput, either. I mean that once you have static text in a TextView (populated from a Database call to user inputted data (that may not be Capitalized)), how can I make sure they are capitalized?
View 1 Replies
View Related
Oct 8, 2010
Can anyone recommend a good battery monitor-typed app? It can be a widget or app, but I'd like to have some sort of visual representation of how much battery is left (like a %). Doesn't have to be in notification area (unless I can hide the stock one). All the ones I search in the market just don't look like they are worth anything, and if I pay for one, I want it to be worth it. I'm monitoring my battery usage. I installed one and it told me 30% but the stock battery bar was full. It was then uninstalled.
View 8 Replies
View Related
Jun 8, 2010
One of the things I missed of my Palm Pre was being able to type a text and it will save what I typed even if I completely exit out of the program.
On the EVO when I typed the message and didn't send, I would lose the message when I hit the Home button to do something else. When I came back, the message was gone. I know if I hit the "back" button, it will save as drafts, but thats not what i'm talking about.
However, this morning I typed a message and hit the home button (In my mind I knew it would be gone, but it wasn't that important of a message) but when I went back to the text message, it took me back to the same exact message with my text saved.
What did I do differently? And how can I keep this feature?
View 1 Replies
View Related
May 9, 2011
I am requesting information regarding writing an app that would respond to user input from the keyboard. Basically, I want to turn certain words into symbols when they are typed. So, if 'brb' was typed, then I would put up "Be Right Back" or something similar onto the screen.
So, I need to know the following:
1. How to run an app as a thread
2. How to have an app monitor what is typed in as input from the keyboard
2a. Is this limited to text / email / any app?
View 2 Replies
View Related
May 10, 2010
For the past week or so I've been having issues with the bottom left corner of my touch screen (in portrait). If I am typing a text I cant select the letter Z or the shift/caps key. I also have a hard time selecting shortcuts in that corner. I am running the 1st 2.1 leak if that makes any difference. Is anyone experiencing touchscreen issues that may have any solutions or should I get a replacement? Does anyone think the OTA might fix this? BTW, I've calibrated my phone several times to no avail. It also happens in landscape but it shifts to the bottom right corner of course!
View 13 Replies
View Related
Jul 11, 2013
Here's the thing, someone called me today and during the call I pressed a few numbers, then the call ended before I could save them somewhere. Is it possible to find them somewhere?
View 2 Replies
View Related
Mar 30, 2012
I want to use an android tablet to take on to building sites for site measures. I use excel spreadsheets to record measurements.
I want to write numbers and text in boxes and have a program convert them to typed text. Can this be done? Does an application exist?
View 1 Replies
View Related
Jan 16, 2014
I bought a new galaxy note 3. I typed my email incorrectly so didn't receive the verification email from samsung.
View 1 Replies
View Related
Jun 22, 2010
Has anyone else had issues with input boxes not displaying what is typed? I have tried the stock keyboard, better keyboard, and am now using swype. They all do it and its random. I regularly use Google Talk and will be chatting for a little bit, hit the end button to lock the screen, come back 2 minutes later and it won't take anything I type. It usually comes back 5-10 minutes later or if I reboot.
This has been going on since 1.5 and continued in stock 2.1 and is still there rooted using Fresh 2.1.
View 2 Replies
View Related
Sep 5, 2010
Is there any apps that will spell check text or email that was typed via the Epic?
Or anyway to get the EPIC to do spell check when typing?
View 13 Replies
View Related
Jul 29, 2010
Hello everybody so i have this problem that i typed anything when registered at android market and now it asks me to re-login and i only know Username and it wont let me create a new account....
View 1 Replies
View Related
Apr 12, 2010
is there a app to get a cursor (like on a computer or winmo)?
View 8 Replies
View Related