Just wondering whether is it possible to recreate PDU from SMS and how? I have looked at
@Override
public void onReceive(Context context, Intent intent) {
Bun开发者_Go百科dle bundle = intent.getExtras();
Object[] aPDUArray = (Object[]) bundle.get("pdus");
// Here it represent as a byte array, how can i convert it to String ?
}
Ok i Just found the answer, posted it here.
精彩评论