0
votes
2answers
37 views

Getting focus/activeFocus status from QML ListView

I've a two column layout with a ListView in the left column. With the Left/Right Keys I can change focus between the two parts of the app. The active focus of the left column is delegated to the ...
0
votes
1answer
116 views

WPF Listview does not scroll (with mouse wheel) when Application not in focus

I have a WPF app (written in C#) which has a Listview control which scrolls perfectly with the mouse wheel when the app is in focus. However when the app is not in focus, even when the mouse pointer ...
0
votes
0answers
68 views

android edittext doesn't lose focus

I have listview which contains one edittext, one textview and one imageview. Initially edittext is gone and textview is visible. My aim is if user clicks the imageview, textview will be switched to ...
1
vote
0answers
193 views

WPF ListView with DataTemplateSelector: PropertyChanged always sets focus to ListView

i'm really frustrated with this problem, but maybe it is really trivial and i just can't see where the problem is. The situation is the following: I have a ListView that is bound to an ItemsSource. ...
1
vote
1answer
263 views

Focus on TextBox after ListView 'SelectionChanged' Event

I wish to set focus on a TextBox after an item is selected from a ListView control, but I can't seem to get it to focus from within my 'SelectionChanged' event method FocusOnTextBox(). For some ...
0
votes
0answers
100 views

Action Modes on ListView in Android

I have a custom row layout in my ListView. I have an ImageView, a couple of TextViews and one EditText. Its like a shopping cart list where the EditText contains the quantity to be bought. Please ...
2
votes
1answer
456 views

EditText in ListView hidden by keyboard when focused

I have a ListView containing rows with EditText's. When I click on an EditText and it's not already focused it receives focus, the keyboard appears and the EditText is moved above the CandidateView ...
0
votes
1answer
50 views

Blackberry Get ImageListField focus Index

I have ImageListField (custom list). In the menu I have Delete Option I want to delete any element in the list. So I have set the following code. I want to get the row Index of the element which has ...
0
votes
0answers
79 views

ListView - remove focus - remote control of app

I'm programming on an android box and have a physical remote control to navigate my application. I have a ActionBar at the top (with 2 Tabs) and two Fragments below the ActionBar. In the left ...
0
votes
2answers
231 views

Focus EditText and ListView in Android

I have within my app, a search functionality. The search box is a basic EditText box with an OnTextChangeListener attached. Below the search box, I have a ListView which displays the results of the ...
0
votes
0answers
116 views

Android custom ListView focus listener

I am planning to build a custom list view. Please refer to below image. In that layout there is an image and list view. When focus moves down image should move along with the listview focus.
0
votes
1answer
732 views

How to set focus in listview item?

I have to set focus on listview item. ListView consist of TextView. point where i want to set focus on listview item, at that point i have the position of that item. I have tried setSelectio(pos), ...
1
vote
0answers
85 views

Get Index of Listview focused item in android

When i am scrolling list view up and down using up and down keys in android Google tv App, I want to get the index of the focused item, how i can get it on focused change of listview . Any one can ...
3
votes
1answer
165 views

how can i focus and move scrollbar in listview

I have a ListView and I do some select on the selected change event private void seleccionarIndexEnLista(int i) { lstvClientes.Items[i].Selected = true; ...
3
votes
1answer
307 views

Custom Listview with EditText: Focus

I have a simple layout with EditText and a Listview. Implemented custom ArrayList adapter to fill in the listview and custom filter so user can search for items displayed in the listview. When I run ...
0
votes
2answers
990 views

EditText inside ListView will not stay focused

I have an EditText inside each row of a ListView. For some reason, when I tap the EditText, it briefly gains focus but then immediately loses it. I have tried these things: ...
1
vote
1answer
271 views

prevent item losing focus when refreshing list view in c#

I have list view and some columns "ID", "product name" and "Vendor". I can add, edit or delete those items and after "messing up" with items list view is refreshed something like this. ...
1
vote
0answers
116 views

Android ICS bug: programmatically showing a screen which contains a ListView, results in list becoming unfocusable

We have 2 screens: The first screen contains a button for displaying the next screen and a ListView. The ListView items are focusable at first. But when returning from the second screen to the first ...
5
votes
1answer
275 views

ListView in SlidingDrawer loses focus after onResume

I use a SlidingDrawer as my main layout. Inside the content area I have a Fragment (which contains a ListView) When the activity first loads everything is great, the listview scrolls correctly. When ...
0
votes
0answers
93 views

GetOpenFilename: Set focus to listview

I use ::GetOpenFileName to let the user choose a file. Is there a possibility to set the focus to the list view instead to the file name box? I use the OFN_ENABLEHOOK flag to get a call to a hook ...
0
votes
0answers
653 views

C#/VB.NET/Windows Forms: Highlight selected ListViewItems in a ListView Control even it has no focus

To highlight any selected ListViewItems in an ListView Control, even the ListBox has no focus, I used a own ListView Control, derived from System.Windows.Forms.ListView. The problem is, the ...
0
votes
0answers
166 views

EditText focus after NotifyDataChanged

I have a ListView where x number of EditTexts can exist on a screen - a formatted calculation is then executed using values entered in specific EditTexts and result of calculation should be displayed ...
1
vote
3answers
753 views

On click of Android listview item's child elements (like button) are getting focus

I have a listview. Each item in listview is customized. Each item has text view1 text view2 button1 text view1 text view2 button1 text view1 text view2 button1 on click of item buttons are ...
0
votes
1answer
140 views

ListView onItemClickListener never triggered

I created a custom view which overrides onTouchListener in order to have differents images drown depending on the action performed by the user. (To change the background of the view when the user ...
0
votes
1answer
227 views

Retaining focus on ListView when using KeyUp to capture function key

I have a ListView that shows a list of search results. To make things easier, I want to tie F8 to the search button, so that the user can hit F8 on their keyboard and perform the search. I'm doing ...
0
votes
0answers
268 views

Bring focus to listview on selecting gridview item

I have a grid view displaying dates and a listview below it which shows specific events on date selected. I wanted that when user selects a date the focus should be brought to listview. So far I used ...
0
votes
1answer
1k views

Android - ListView EditText Focus Issues

I have an EditText that I'm using as the footer View for my ListView. I'm attempting to access the focus / lose focus events, but for some reason, it's firing multiple times per focus. What is going ...
0
votes
2answers
256 views

How to select control to be focused from ListView

Consider the following form: I want textbox1 or textbox2 to be focused when i click on "1" or "2" in the listview. I wrote the following code: private void listView1_ItemSelectionChanged(object ...
1
vote
1answer
656 views

Android : Why does my EditText loose focus directly?

I've seen many times this problem, and I think it's not that hard to fix, still I've tryied several hours, can't get how it works. Simple problem : I have 2 EditText in a listView, and they both ...
5
votes
4answers
405 views

Change attributes of view on list item selection

I have a ListView which contains custom rows. This custom row has following UI elements ImageView imageView1,imageView2 TextView textview1,textView2,textView3 The requirement is whenever the list ...
0
votes
1answer
1k views

Virtual keyboard does not open when dynamically inserting an EditText view into a Listview

I'm struggeling with an issue that really drives my crazy. I found comparable issues in the forums, but they all are not quite the same like this one. So I hope that someone has a brilliant idea how I ...
0
votes
2answers
176 views

How to make only one widget focusable in a custom listview?

I have a custom listview with one checkbox and two textviews. I'm using a custom adapter to present the list view. The problem is that the onItemclick function doesn't work for the checkbox if I focus ...
1
vote
2answers
447 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" ...
2
votes
0answers
134 views

Andrlid ListView focus mess up

In my application, I want to implement a ListView, of each itemview is a LinearLayout with two focusable buttons in it horziontally, and each row item data loads from server in page. But it seems that ...
0
votes
1answer
101 views

Highlight a listview's child

Could i highlight child of list view? i tried many ways but it doesn't work. list.getchildat(position).requestFocus; and list.setSelection(position); and list.setselected("true"). Any ...
0
votes
1answer
551 views

Make part of Listview`s Header-/FooterView selectable

I have a ListView with a custom footer set via list.addFooterView(getLayoutInflater().inflate(R.layout.list_footer_view, null, true), null,true); list_footer_view.xml looks like this: ...
2
votes
4answers
2k views

Disable item focus in ListView

How can I disable the focus from an Item in a ListView when I click on it, so that there is no focus on click?
5
votes
3answers
3k 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 ...
2
votes
1answer
463 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, ...
0
votes
0answers
608 views

ListView or Child Elements lose focus

I have a very simple ListView. Each row is tapable and loads a little custom PopupWindow when clicked. That works just fine.. most of the time. The problem is, after quickly scrolling the ListView ...
2
votes
2answers
454 views

ListView ItemChanged puzzle with MessageBoxes - ItemSelectionChanged called twice

Here is the problem: I have a Windows Forms application that I'm developing, and in one segment I'm using a ListView control. What I'm trying can be simply stated as: on event ...
2
votes
0answers
636 views

can't populate listview based on selected spinner item. getting Window already focused, ignoring focus gain of

I have a spinner that displays a list of classes a user is enrolled in. After the user selects a class, they press a "search" button which pulls up a list of studygroups they can join for that class. ...
24
votes
5answers
48k views

Android ListView with Checkbox and all clickable [duplicate]

Possible Duplicate: Android: Binding data from a database to a CheckBox in a ListView? i want to use a ListView with the items having following layout ------------------------- [CB] ...
3
votes
1answer
433 views

C# Calling focus on text box in SelectedIndexChange event of Listview loses focus on event completion

I have a listview and when I click on an item, it calls the SelectedIndexChange event, in that event I want to set the focus on a textbox so I call: this.ActiveControl = theTextBoxControl; I can see ...
9
votes
3answers
20k views

How to change listview selected row backcolor even when focus on another control?

I have a program which uses a barcode scanner as input device so that means I need to keep the focus on a text box. The program has a listview control and I select one of the items programatically ...
0
votes
1answer
2k views

Changing color of custom listview item on focus

I have created a custom list and managed to change the colors of the child items in normal and clicked view. But When I apply it to the focus view, then nothing happens and the default background ...
4
votes
2answers
1k 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 ...
1
vote
1answer
3k 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 ...
6
votes
1answer
1k views

How do I prevent ListView footer from becoming selected?

I have a ListView which can be navigated with the dpad. It has a footer. I want to prevent navigation into the footer with the dpad. I have set focusable and focusableInTouchMode of the footer view ...
3
votes
2answers
15k views

Android:To set an item as selected when the ListView opens?

An activity has a Button and a ListView. Initially, only the Button is visible. When the button is pressed, the ListView is displayed. When displayed, is it possible for me to show one particular ...

1 2