본문 바로가기

Intent 활용 예시 출처 : http://theeye.pe.kr/entry/a-tip-of-android-intent-with-simple-examples // 웹페이지 띄우기 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&sad.. 더보기
갤러리 공유 기능 추가하기 [펌] http://croute.me/497 우선 매니페스트파일에서 공유기능을 적용할 액티비티에 아래와 같은 인텐트 필터를 추가해줍니다. /AndroidManifest.xml 1 2 3 4 5 6 그리고 해당 액티비티에서는 아래의 코드를 추가해줍니다. code in Activity Uri uri = (Uri) getIntent().getExtras().getParcelable(Intent.EXTRA_STREAM); 이렇게 uri로 가져온 이미지 데이터는 아래와 같이 사용할 수 있을거에요. Bitmap from uri(Uri to bitmap) Bitmap bitmap = Images.Media.getBitmap(getContentResolver(), uri); 또는 바로 이미지뷰에 뿌려줄 수 있겠죠? I.. 더보기
C2DM 발송 테스트 소스 C2DM 관련 설정은 완료된것으로 전제 한다. 이는 단순히 메세지 발송이 잘되는지 안되는지를 확인하기 위한 소스다. 인터넷 어디선가 가져온 소스를 약간 수정 했다. import java.io.OutputStream; import java.net.HttpURLConnection; import java.net.URL; import java.net.URLEncoder; /** * 안드로이드 폰에 메세지를 전송하는 클래스 * @author inforex * */ public class PushAndroid { private static String HOST = "http://android.apis.google.com/c2dm/send"; private static String AUTH = "DQAAAMIAAAA.. 더보기