Tagged Questions

3
votes
1answer
115 views

which 'on' method is called when the trackball's 'Select' button is pressed?

which 'on' event is invoked when the user selects a ListView item by pressing the trackball button? i trapped onKeyDown, onTouchEvent, onTrackballEvent but it's none of those... thanks
3
votes
1answer
265 views

Is it possible to detect if an Android phone has a trackball?

My application requires users to hold down the trackball in order to access an advanced menu. Not all phones have a trackball, however, so I need to remove this requirement for such phones. Is there ...
3
votes
1answer
2k views

Change “Pulse notification light” / trackball light setting on Android (Nexus One only?)

On the Nexus One (at least in 2.1-update1, and I think in 2.1), there is a setting under Sound & Display: "Pulse notification light". This doesn't seem to be present on the "2.1 with Google APIs" ...
2
votes
1answer
143 views

Let the trackball glow per code in Android java

How can I let the Trackball glow? I know my HTC Hero can do this, If I get a new SMS he is also glowing, so how do I program this? Nothing found for this...
2
votes
1answer
1k views

WebView JavaScript links work on touch but not when using trackball

I have a simple WebView-based activity that follows the Hello, WebView example to enable JavaScript and overload shouldOverrideUrlLoading(). This Activity works great when the user touches links on ...
1
vote
2answers
450 views

onTrackballEvent not firing on Samsung Moment

I have a list in my app. When a user touches a list item with their finger, the onListItemClick handler fires and I have it opening a new Activity. However, when a user uses the trackball/pad to ...
1
vote
1answer
248 views

Deselect any trackball/trackpad selection

Is there a way to programmatically deselect/wipe whatever the user has selected with the trackball/trackpad? When I hit the back button on an Activity, the Activity it falls back to has a button that ...
1
vote
1answer
250 views

Android trackball events while screen is off

I'm looking for a way to grab trackball events while the screen is off, preferrably on a N1. I'm building my own music player and would love to add the feature to skip songs by trackball press, ...
0
votes
1answer
372 views

Google Map View on Non Touch-Screen Phones

I have implemented Google Map view in my app with a number of custom markers. I am testing in the emulator and everything works fine if I treat the emulator like a touch screen phone - I can click on ...
0
votes
1answer
112 views

Receiving trackball events with an Android NativeActivity

I have a NativeActivity-based application that wants to receive trackball events. According to the (sketchy) documentation, I should be receiving these via the struct android_app's onInputEvent() ...
0
votes
2answers
117 views

Select and check the checkboxes in Android listview using device trackball

In my Android application I have used a Listview and in each element in the listview have two checkboxes. The problem is, the user can not select those checkboxes using the device trackball. It ...
0
votes
0answers
58 views

Trackball driver for Android

I'm wondering which input event is used for trackball inputs, on the driver side (for ex. the ones for multitouch are ABS_MT_POSITION_X and ABS_MT_POSITION_Y), as I can't seem to find any ...
0
votes
2answers
558 views

Mapview onTap not firing for OverlayItem onTap

I have a mapview in my app, and everything is working fabulously with touchEvents. However to maximize usership of the App, I have been trying to add trackBall interface functionality as well and am ...
0
votes
0answers
174 views

Item in listview only touchable after 'scrolling to it' with trackball?

I am implementing a ListView in a ScrollView. As everybody else, I had problems with it, the list wouldn't become bigger than 1 item.. But after I fixed this by using this workaround: ...
0
votes
3answers
761 views

Disable trackball click in Android

I've run into some difficulties with implementing a custom progress dialog. Even though an overlay intercepts touch events the user can still operate the trackball and click elements that are supposed ...
0
votes
1answer
396 views

How to handle Android trackball events from a web page?

Is there any DOM event in Webkit associated to trackball events (movement and pressing)? Or is there any other way to handle those events from a webpage?
0
votes
1answer
207 views

Select TextView with trackball

I have different elements in my layout: Buttons, RadioButtons, EditText, a ListView and I have made a RelativeLayout that is clickable and starts a new intent. Everything works ok except that I can't ...
0
votes
3answers
2k views

How to control trackball behaviour in Android Views?

I have a FrameLayout view which contains one (MapView-like) control and some additional buttons overlaying it. (the layout xml is below). I want to allow the user to pan/scroll the main view using ...
-1
votes
1answer
41 views

Android - Trackball, ListView Visibility Gone Error

I have a listview that displays a list of profiles added by a user. If no profiles exist, I set the listview visibility to "gone". I have a context menu on the listview that allows a user to delete a ...