Tagged Questions

5
votes
1answer
630 views

Android: EditText cannot gain focus after being re-enabled

I have a TabHost with three tabs. The first tab's content is the Intent of a custom activity who's contentview is a relative layout containing two EditTexts and two CheckBoxes (and a button). Each ...
5
votes
2answers
1k views

Focus problem with multiple EditText's

I have an activity with two edittext controls. I am calling the requestFocus on the second edittext field since by default the focus goes to the first edittext control. The focus appears to be in the ...
4
votes
5answers
3k views

Android: Force EditText to remove focus?

I would like to be able to remove the focus from the EditText. For example if the Keyboard appears, and the user hides it with the back button, I would like the focus and the cursor to disappear. How ...
3
votes
1answer
137 views

Stop ScrollView from setting focus on EditText

Android's ScrollView (when scrolled or fling'd) likes to set the focus of an EditText when it's one of it's children. It happens when you scroll and then release. Is there anyway to stop this ...
3
votes
1answer
492 views

Edit Text in ListActivity ListView looses focus when keyboard comes up

I have searched and searched for an answer to this question and everything that looked like an answer has not worked so I guess I will just ask. I have a couple of EditText boxes added to a ListView ...
3
votes
2answers
325 views

Focus randomly jumps when scrolling

I have an activity with many EditText controls and checkboxes near them. By default, most EditTexts are disabled. When I open the activity, some random EditText control gets focus (a frame around ...
3
votes
1answer
534 views

Tap outside edittext to lose focus

I just want when click outside the "edittext" to automatically lose focus and hide keyboard. At the moment, if I click on the "edittext" it focuses but i need to hit the back button to unfocus.
2
votes
1answer
112 views

Android EditText AutoFocus to next EditText when at maxlength

I have a username and a password XML segment <EditText android:id="@+id/username" android:hint="@string/username_hint" android:layout_width="match_parent" android:maxLength="9" ...
2
votes
3answers
94 views

Focus removed while typing in edit text

I have an EditText serialText = (EditText) findViewById(R.id.pinText); Now onclick of somebutton, I should get the focus to edit text to write something. But when I click inside of edit text to ...
2
votes
1answer
181 views

Clear focus EditText when back button is pressed when softkeyboard is showing

I know that there are quite some questions out here regarding this question. But non of them have the answer that I'm looking for. I've got 7 ET inside a ScrollView. When I start the application no ...
2
votes
0answers
127 views

Android: Can an EditText Within a ListView be Focused as Well as the List Item?

I know that when you allow focus to any "focusable" object within a ListView it disables the ability to focus on the ListView itself. I have an EditText and a couple buttons inside my ListView item, ...
2
votes
2answers
317 views

Set focus in android

My application contain one EditText, Button and some information on activity. When it loads user always got focused on EditText, which caused softkwyboard loaded on screen. I need to set no focus on ...
2
votes
2answers
959 views

Edittext android automatic focus

I have an issue when the activity starts, android automatically places focus on the first edittext. How do I prevent android from doing that?
2
votes
2answers
1k views

request focus on edit text

I have got different issue in android application. I have taken 3 EditTexts in order. My intention is when I setOnClick on 1st editText the virtual keypad appearing. When i clicked on next on virtual ...
2
votes
4answers
4k views

How to show soft-keyboard when edittext is focused

I want to automatically show the soft-keyboard when an EditText is focused (if the device does not have a physical keyboard) and I have two problems: When my Activity is displayed, my EditText is ...
2
votes
1answer
663 views

Android: ListView with EditTexts messes up focus and IME

I have ListActivity with custom items, where every item has it's own TextEdit. Taping on any of them brings IME keyboard up and it causes ListView to be resized. So EditText, which recently received ...
2
votes
2answers
996 views

Automatic popping up keyboard on start Activity

I got a relative simple question. I have an activity with a lot of EditText's in them. When I open the activity it automatically focusses to the first EditText and displays the virtual keyboard. How ...
2
votes
3answers
3k views

requestFocus problem

I'm having some problems with the control focusing. My interface definition below has: source (RadioGroup/optional) destination (EditText) quantity (EditText) transfer (Button) I'm changing the ...
1
vote
1answer
21 views

how cna i set the focus ( and display the keyboard ) on my editText programmatically

I have a layout which contains some views like this : <LinearLayout> <TextView...> TextView...> <ImageView ...> <EditText...> <Button...> </linearLayout> how ...
1
vote
2answers
578 views

Android EditText: Lose Focus After Input

I am trying to figure out how I can force an EditText to remove its focus after a number has been inputted so that its OnFocusChangedListener will fire. Basically I want the user to be able to input a ...
1
vote
0answers
216 views

Android Development: Keep EditText Selection Highlight On Lose Focus?

I was wondering if it's possible to keep an EditText's orange highlight around selected text when the EditText loses focus, until the user changes the selection? I'm creating a find/replace feature ...
1
vote
1answer
205 views

Change focus of edittext when tap outsite edittext

I have a edit text to input url, and a webview to display the website My problem is: when i go google.com, i tap to my edit text so my edit text has focus. I tap to search area in gooogle, but my ...
1
vote
3answers
228 views

AlertDialoug focusing on EditText when dismissed.. causing Keyboard to appear.. what to do?

I am using an AlertDialog to pop up and ask the user for some information, when the user clicks on a button. The dialog is working fine, and I get the user info it dismisses itself. However when the ...
1
vote
0answers
198 views

Android Button needs two click for action

I have a form. 7 EditText in vertical layout. On screen in one moment can see only 3 EditText (form is big so I need to scroll up and down to fill all fileds). In bottom - Button. When I fill top ...
1
vote
1answer
706 views

Android EditText change focus after validation and showing the error in a Dialog

I have a simple Activity with 3 EditText fields. User, Pass, Confirmation After typing something in the User field and the person clicks next on the keyboard, I have a setOnFocusChangeListener on ...
1
vote
2answers
268 views

android. Autofocused textview on activity startup

I have a activity, which view have a several EditText components. When activity starts, the first of EditTexts became focused and keyboard appears. I would like to avoid this 'feature' ( I mean I ...
1
vote
2answers
2k views

Edittext keeps focus when keyboard up AND scrolling the listview

I use a listview. Each item in the list contains one edittext. When I click on an edittext, the soft keyboard pops up, the edittext I clicked on gains the focus for a short time and then lose it. I ...
1
vote
1answer
691 views

When do Android EditText's requestFocus()

I have a number of EditTexts inside a scrollview. In the background these fields are linked to a number of other fields and regularly (once a second or so) the layout has it's textfields updated ...
1
vote
1answer
334 views

Cursor location not updated when non-focused EditText clicked

When non-focused EditText clicked, it becomes focused, but cursor does not move to new location. I should click it again to move cursor to a new position. Q: How can I focus and move cursor with ...
0
votes
0answers
28 views

Focus disappear when switch from one EditText to another

In my view, I have more than 3 EditTexts. In first EditText, if I click "Next", the focus disappear. Even I call setNextFocusDownId() to set the next focus control to another EditText, it doesn't ...
0
votes
1answer
27 views

android edittext focus border on multiple edittext widgets

I have a set of EditText widgets on my activity view, each on a seperate TableRow in a TableView. When I select one of the EditText widgets, the others highlight as well although the focus is only on ...
0
votes
1answer
57 views

How to display softInput : EditText in TabHost with erratic behavior

i'm having some problems with autofocus in a tabhost . I need to display softinput and focus in the editText when i open that tab (with that edittext) , better explained with the next picture : In ...
0
votes
1answer
37 views

KeyCode_Enter to next EditText in ListView

I have multiline ListView with a few EditText. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
2answers
95 views

Moving focus from one EditText to another

I designed a layout for a create account activity. when one EditText loses focus, I'm doing some checking on the input and if something is not right I want to regain the focus on that EditText. I ...
0
votes
0answers
176 views

Android edittext inside scrollview get auto focus

hi guys i am having the problem in a page where i have a main scrollview and inside that there are 5 edittext controls and few spinner controls. Whenever i select some value in the spinner controls, ...
0
votes
1answer
64 views

EditText focus opens Keyboard automatically

When i start Login Activity. it has two fields email and password. Email should get the focus but not open the keyboard automatically when the activity starts. <?xml version="1.0" ...
0
votes
2answers
79 views

Focus on the first edtitext in android

I have four edittexts the problem is when i start activity the focus will be on the last edittext , how can i make the focus on the first edittext using xml ? Thanks
0
votes
1answer
94 views

Getting force close when wanting to change focus from one EditText to Another

This is for my Android App. I have two EditText fields set to a maximum of one character that can be input in each field. Once the user inputs the first character I would like the focus to ...
0
votes
1answer
286 views

Avoiding focus-gain of first view (EditText) on Tab-Change

i'm creating an application on which it is essential that none of the EditText-Views gets a focus. This should only happen, when the user points directly into one of them. I managed to prevent the ...
0
votes
0answers
517 views

lose focus on EditText during the textchangelistener

i have a listview with a custom arrayadapter. each listfield has an edittext. each edittext has a textchangelistener. what i want is to multiply a price by the number of the edittext with the ...
0
votes
2answers
698 views

Can't manage to requestFocus a Spinner

I've got an annoying issue with a screen. The screen consists of a bunch of Spinners one under the other, and then underneath the spinner, an EditText. The problem is that when the screen starts, the ...
0
votes
4answers
2k views

EditText, clear focus on touch outside

My layout contains ListView, SurfaceView and EditText. When I click on the EditText, it receives focus and the on-screen keyboard pops up. When I click somewhere outside of the EditText, it still has ...
0
votes
1answer
662 views

Android PopupWindow window focus/selection

In my app,I have an edittext and a PopupWindow. I want to show the popup once the user starts editing the text. but when I show the popup, it graps the focus from the edittext, and the virtual ...
0
votes
1answer
137 views

Why does the IME on my android application de-associate from the EditText it should be editing?

I've got an Android application I'm writing. It has a ListActivity in it that's all set up to load my data using this layout for each item. My data Adapter binds with no problem ...
0
votes
1answer
493 views

Set focus on an edittext after using

I have an edittext that recieves input and prints in on the screen. I need to find a way wherein after click submit or enter, the phone will focus on the edittext I tried ...
0
votes
1answer
619 views

Android EditText: Focus Outline

In my app, I have a dynamic number of edittexts and after the user changes some settings I need the focus outline graphic to appear on some but not all of the edittexts. This is needed to highlight ...
0
votes
2answers
1k views

Android EditText boxes

I want to cause the focus of one edit text box to move to another on editting (meaning you can only type on letter before it automatically moves on to the next edit text). It's the "on edit" that I ...