0

I have one activity and I wanna pass the static value to dialpad the value is *#000#.

Here is my onClickListener code :

  btn.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View view) {
            Intent intent = new Intent(Intent.ACTION_DIAL);
            intent.setData(Uri.parse("tel:*%23000"));
            startActivity(intent);
        }
    });
Nawrez
  • 3,314
  • 8
  • 28
  • 42

0 Answers0