반응형

GaengStroy 250

[Asset] asset에서 읽은 이미지 base64 인코딩 된 이미지로

asset에서 읽은 이미지 base64 인코딩 된 이미지로 private HashMap createInstallManagerInfo() throws Exception { HashMap installHashMap = new HashMap(); //asset에서 읽은 이미지 -> bas64 인코딩된 이미지로 AssetManager assetManager = getResources().getAssets(); InputStream is = null; is = assetManager.open("seal.jpg"); byte[] buf = new byte[1024]; int bytesRead; ByteArrayOutputStream output = new ByteArrayOutputStream(); while ((..

Platform/Android 2020.08.06

[INTENT] URL 로 Activity 호출

나의 경우에는 하위 모듈에서 app 상의 activity를 호출할 때 사용하였다. https://gun0912.tistory.com/13 [안드로이드/Android]URL로 액티비티 실행하는 방법(Custom URL Scheme) 우리는 보통 Activity를 실행시킬때 아래와 같이 코드를 작성합니다. Intent intent = new Intent(this,AAA.class); startActivity(intent); 만약 URL을 실행하고싶은 경우, 아래와 같이 해당 URL을 적어주고 ACT.. gun0912.tistory.com

Platform/Android 2020.07.23
반응형