posted by 네코냥이 2014. 11. 28. 11:34


/****************************************************************/


public class TelCall extends Activity {

    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.telcall);

    }

 

    public void mOnClick(View v) {

        Uri number;

        Intent intent;

        number = Uri.parse("tel:000-000-0000"); // 번호 수정해주시면 됩니다.

        intent = new Intent(Intent.ACTION_DIAL, number); // ACTION_CALL : 바로걸기

        startActivity(intent);

        break;

    }

}


/****************************************************************/