My app currently does not produce the final "#" at the end of AT&T's USSD code for checking data use (Which is supposed to be *3282#)
Here is my code:
public void callATT(View view){
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + "*3282#"));
startActivity(intent);
}
Everytime it calls it just calls "*3282"
Please help me,
Thanks in advance
-Tucker
Try something like this . Tell me it works or not