일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 안드로이드 gcm
- PHP
- soundpool
- xe
- 폼메일
- Android
- 자바스크립트
- WebView
- android 효과음
- dovecot
- 우분투
- php 시큐어코딩
- php 취약점
- C#
- roundcube
- not working
- C# IO
- 설치
- 자동 생성
- mysql
- 안드로이드 푸시
- FCM
- UML
- Mail Server
- 안드로이드
- chart.js
- javascript
- 안드로이드 푸쉬
- curl
- html5
- Today
- Total
목록android (125)
그러냐
본 Gallery를 열어 Image를 선택해 올 버튼 하나와 선택한 Image를 보여줄 ImageView를 배치 버튼 클릭 시 기본 Gallery로 이동 public class gallery1 extends Activity { final int REQ_CODE_SELECT_IMAGE=100; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...... //버튼 클릭시 처리로직 Intent intent = new Intent(Intent.ACTION_PICK); intent.setType(android.provider.MediaStore.Images.Media.CONTENT_TYPE); intent.s..
1. 이미지 가져오기2. URI -> path 변환3. 안드로이드에서 파일 복사하기 package com.example.changnam.kcntest; import android.content.ContentUris;import android.content.Context;import android.content.Intent;import android.database.Cursor;import android.graphics.drawable.Drawable;import android.net.Uri;import android.os.Bundle;import android.os.Environment;import android.provider.DocumentsContract;import android.provider...
http://www.imcore.net/encryption-aes256-c-objectivec-ios-iphone-ipad-php-java-android-perl-javascript-python/
onActivityResult는, 정말 간단하게 설명하면 Activity A와 B가 있을 때, A에서 B로 갔다가 다시 A로 넘어올 때 사용하는, 안드로이드에서 제공하는 기본 메소드입니다. 이 메소드의 대표적인 용도 중 하나는 커스텀 다이얼로그를 사용할 때 입니다. 커스텀 다이얼로그를 짤 때 가장 쉬운 방법으로 액티비티를 다이얼로그화하는 경우가 있습니다. 하지만 액티비티를 이동할 때 Intent intent = new Intent(this, B.class);startActivity(intent);finish(); 혹은 startActivity(new Intent(this, B.class));finish(); 이런식으로 넘기는 경우가 있는데 다이얼로그가 호출되면 배경화면으로 A 액티비티가 반투명하게 보여야..
=====파일첨부===== http://stackoverflow.com/questions/3748568/how-can-i-launch-androids-email-activity-with-an-attachment-attached-in-the-emaihttp://stackoverflow.com/questions/2264622/android-multiple-email-attachment-using-intent-questionhttp://blog.blackmoonit.com/2010/02/filebrowser-send-receive-intents.html public static void email(Context context, String emailTo, String emailCC, String subject..
http://mainia.tistory.com/717 http://androidgamedevs.blogspot.kr/2015/01/android-java-tcpip-clientserver-socket.html http://pulsebeat.tistory.com/24 http://hellonewworld.tistory.com/167
안드로이드 패키지명 변경 하기 1 . 패키지 파일 우클릭 -> 리펙터 -> 리네임 -> 원하는 네임으로 변경 ( 이때 example 이나 android 등은 들어가면 안된다) 2. 매니패스트에서 패키지명 변경되었나 확인, 안되있으면 변경해주기 3. GEN도 변경해주고 모든 .JAVA import 해주기 ~~~~끝 ~~~~ 출처 : http://itstory07.tistory.com/367
살다보면 내가 만든 앱에서 특정 웹사이트로 웹 브라우저를 띄우고 싶은 일이 생긴다. 안드로이드에서 제공하는 WebView를 쓰기 싫을 때가 그렇다. Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com")); startActivity(intent); 위의 코드는 브라우저 인텐트를 실행한다. 실행하는 액티비티에는 다음 속성??이 부여되야 한다. 물론 인터넷 퍼미션도 주자. 만약 여러개의 브라우저가 깔려있다면 선택 창이 먼저 뜰 것이다. 다음과 같이하면 크롬으로 자동으로 띄운다. intent.setPackage("com.android.chrome"); 출처 : http://codeticker.tistory.com/ent..
안드로이드 개발시 WebView를 적용할 때 가로/세로로 화면이 전화되면 URL이 Reload 되는 현상이 발생합니다. (화면전환 시 Activity의 onCreate 메소드가 다시 호출되기 때문) [화면 전환시 Method 호출 순서] onSaveInstanceState() → onCreate() → onRestoreInstanceState() Colored By Color Scripter™123456789101112131415161718192021222324252627282930313233343536373839404142package com.example.webview; import android.os.Bundle;import android.app.Activity;import android.webki..
안드로이드에서 어플리케이션을 개발하다보면 코드 상으로는 될 거같지만, 막상 실행 시켜보면 오류가 발생하는 경우가 있습니다. Service 를 하나 만들어, 인터넷에서 음악 파일을 다운 받고, 파일 다운로드가 종료되면 뮤직 플레이어를 실행시키는 일도 그런 일 중에 하나입니다. 안드로이드 플랫폼 상에서는 Activity 가 아닌 Service 혹은 BroadcastReceiver 에서 Activity 를 하나 새롭게 생성하려고 할 경우에는 다음과 같은 생소한 예외를 만나게 됩니다. ERROR/AndroidRuntime(): Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag. Is..