[android-developers] Duplicated text when using .append in widgets

2009-05-02 Thread Alberto M. Scattolo
Good morning everybody! I'm pretty new to Android so I'm facing some problems :) I'm using a TextView widget to show a log, just some text. The log content is stored on an SQLite database that my app creates and when a new line is added to the databse I use textview.append(my last line) to add

[android-developers] Re: Duplicated text when using .append in widgets

2009-05-02 Thread Alberto M. Scattolo
Hi guys! It seems to be a problem with an unregistered broadcast receiver The idea is that I send and sms and I register a broadcast receiver to know if the sms has been sent. When can I unregister the broadcast receiver? Thanks a lot to everybody! -- A

[android-developers] Re: How to set my SMS application is default to read sms?

2009-04-30 Thread Alberto M. Scattolo
Hi, I've the need! Since I need to call my app only for some specific sms content, I was thinking about a Service that reads the sms and then decides to run my app or not but of course I need to disable or block the default notification for these sms that I want to read with my app. Can anybody