Introducing XDA:DevCon – A Conference For Developers By Developers
XDA Developers Android and Mobile Development Forum
Forgot your password?

Statistics

Total Posts
General Information
  • Last Activity: Yesterday 04:51 AM
  • Join Date: 19th October 2009
  • Referrals: 0

Friends

Showing Friends 1 to 2 of 2

Most Thanked

MOST THANKED POSTS
ThanksPost Summary
9 Overview: ButlerSMS is a sms auto responder. If you would like to support my work, feel free to purchase the app from google play. (It is on sale for $0.99 right now :) ) ButlerSMS Check second post for what is currently being worked on. N...
3 There is a work-around for this. If you run a service, you can technically launch an activity that can resemble this. I have an app that uses a broadcast receiver to listen for the events I want to alert my user to. I created a custom layout fo...
1 I over looked the bold part. When setting text for a Textview, it has to be in string format. There is no implied conversion. package com.example.sensoractivity2; import android.app.Activity; import android.hardware.Sensor; import androi...
1 Look at the bold for changes that will help you. When you are working with view objects, you shouldn't create the object in a listener or something that is called over and over. You will be creating a memory leak. package com.example.sensoractivi...
1 The broadcast receiver is just the mechanism I use to launch the activity. It is a mere intent that I start from it. Below is the class I use for my alertdialog. You won't be able to cut and paste because I also created my own class to dismiss the...