intent2 intent uri 모음 [Android] // 웹페이지 띄우기Uri uri = Uri.parse("http://www.google.com");Intent it = new Intent(Intent.ACTION_VIEW,uri);startActivity(it); // 구글맵 띄우기Uri uri = Uri.parse("geo:38.899533,-77.036476");Intent it = new Intent(Intent.Action_VIEW,uri);startActivity(it); // 구글 길찾기 띄우기Uri uri = Uri.parse("http://maps.google.com/maps?f=d&saddr=출발지주소&daddr=도착지주소&hl=ko");Intent it = new Intent(Intent.ACTION_VIEW,URI);startAc.. 2015. 12. 14. 공유 Intent [Android] Intent i = new Intent(Intent.ACTION_SEND); i.setType("text/plain"); i.putExtra(Intent.EXTRA_SUBJECT, "Sharing URL"); i.putExtra(Intent.EXTRA_TEXT, "http://www.url.com"); startActivity(Intent.createChooser(i, "Share URL"));If the app you want to share to is not installed on the user's device, for example - facebook, then you'll have to use Facebook SDK.If you want your Activity to handle text dat.. 2015. 12. 14. 이전 1 다음