• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. B

    Apps OnTouchListener() Problems...

    When I first created my GUI "buttons" I set OnClickListeners for each of them. When I ran the app on my actual phone, I didn't like how the action was performed when the user "releases" the button, instead of acting immeadiately upon pressing. So I switched to OnTouchListeners. The problem...
  2. B

    Apps Vibrator help

    I set up my Vibrator: final Vibrator vibe = (Vibrator) getSystemService (Context.VIBRATOR_SERVICE); but when I call: vibe.vibrate(100); my app force closes... any ideas?
  3. B

    Apps Debugging help. Force Close. Very Simple app.

    I'm just starting out, trying to get my feet wet... Here's my xml: <?xmlversion="1.0"encoding="utf-8"?> <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" >...