Jebik
Jebik

Reputation: 788

How get phone state or sms state?

Hello all i will explain my question a little more. I'm not native english speaker. So maybe my question is on the internet but when i search i only found something i already know.

I have a Xperia U with the illumination barre. I use it as a notification for sms. I already know how to receiver SMS and the event of unlock screen

What i will now is 2 thing.

1- Possibility to know if the last sms was read by the user or not(My apllication is just a notification center and not a sms handler so the sms reading is doing by official app or user app like gosms)

2- Possibility to know if phone is already unlock, i will remove notification if it is.

I'm not very clear but i find this difficult to explain if you don't undestand the question say it i will reformulate it.

Upvotes: 0

Views: 519

Answers (1)

Raghav Sood
Raghav Sood

Reputation: 82563

Possibility to know if the last sms was read by the user or not(My apllication is just a notification center and not a sms handler so the sms reading is doing by official app or user app like gosms)

There is no concept of Read in SMS. You can get a delivery notification for when it reaches the user's device, but you can't tell if the user read it or not.

Possibility to know if phone is already unlock, i will remove notification if it is.

You will need to dynamically register a BroadcastReceiver for ACTION_SCREEN_ON and ACTION_USER_PRESENT broadcasts.

Upvotes: 1

Related Questions