암시적 intent
아래와 같이 하면 전화거는 창으로 바뀐다.
Uri uri = Uri.parse(“tel:123123132132”);
Intent intent = new Intent(Intent.ACTION_DIAL, uri);
startActivity(intent);
전화걸기.. 단축키 만들수도 있것다..
Uri uri = Uri.parse(“tel:123123132132”);
Intent intent = new Intent(Intent.ACTION_CALL, uri);
startActivity(intent);
Google 지도에 표시하기
Uri uri = Uri.parse(“geo:37.55,127.00”);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
인터넷 바로가기
Uri uri = Uri.parse(“http://www.google.com”);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
주소록
Uri uri = Uri.parse(“content://contacts/people”);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
VideoView (strimming 볼때 사용하면 좋다)