분류
-
apktool manager 디컴파일 툴 (CPK)컴퓨터/소프트웨어 2014. 8. 31. 20:06
APK Manager 커스텀 버전다운로드 버전 1.3.6.1 (2020.05.03)수정 사항updated bak/smali : v2.2.2 to v2.4.0updated apktool : v2.3.1 to v2.4.1updated build tools r29updated 7za : v18.03 beta to v19.00dex2jar v2.0jd-gui v1.6.6apk dependency graph v0.3.1testkey signkey 9.0.0_r3 reg.exe 로 레지 등록하면 어디서든 APK 파일 우클릭 하여 디/컴파일/사인 가능 버전: 1.3.5 (2017-07-23)updated bak/smali to v2.2.1updated apktool to v2.2.3updated build tools..
-
컴퓨터 블루 라이트 차단 f.lux컴퓨터/소프트웨어 2014. 8. 31. 19:43
공식 홈페이지: https://justgetflux.com/ 이 프로그램은? : 모니터는 햇빛처럼 빛나게 설계돼있다. 하지만 밤에는 그럴 필요가 없으며, 수면에 방해를 준다. 눈 건강을 위해, 이 프로그램이 있다. 제작: Michael Herf, Lorna Herf 기능: 위치를 설정하면 자동으로 시간대에 맞춰, 차단해준다. 팁: Alt + PageDown 으로 화면 밝기 감소, Alt + PageUp 으로 화면 밝기 증가, Alt + End 로 켜기/끄기 가능 다운로드: https://justgetflux.com/dlwin.html
-
안드로이드 메일 보내기 소스모바일/Development 2014. 8. 30. 20:00
Intent send = new Intent(Intent.ACTION_SENDTO); String uriText = "mailto:" + Uri.encode(mail) + "?subject=" + Uri.encode(subject) + "&body=" + Uri.encode(body); Uri uri = Uri.parse(uriText); send.setData(uri); context.startActivity(Intent.createChooser(send, "Send mail...")); mail, subject, body는 String mail = user@gmail.com subject = 제목 body = 본문 내용
-
안드로이드 재부팅 소스모바일/Development 2014. 8. 18. 18:34
// 루팅된 폰 이상 ProcessBuilder pb = new ProcessBuilder(new String[] { "su", "-c", "/system/bin/reboot" }); Process process = pb.start(); process.waitFor(); // 혹은, 하지만 System 펌웨어 키로 사인된 어플리케이션만 가능함 PowerManager powerManager = (PowerManager)getSystemService(Context.POWER_SERVICE); powerManager.reboot(null);
-
안드로이드 코딩을 좀 더 간단하게 "ButterKnife"모바일/Development 2014. 7. 27. 20:07
링크: https://github.com/JakeWharton/butterknife ButterKnife는 Annotation기능을 이용하여 코딩을 쉽게할 수 있는 방법입니다. ※ Bind를 시켜야 사용 가능 (Kotlin과 비슷) class Example extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.simple_activity); // Bind 하세요. ButterKnife.bind(this); } } @BindView 를 이용하면 자동으로 ID 설정과 캐스트를 해줌 // With ButterKnife..
-
안드로이드 애니메이션 라이브러리 모음모바일/Development 2014. 7. 6. 12:04
1. SlidingUpPanelLayout 다운로드: https://github.com/umano/AndroidSlidingUpPanel/releases주소: https://github.com/umano/AndroidSlidingUpPanel 2. FoldableLayout 주소 및 다운로드: https://github.com/alexvasilkov/FoldableLayout 3. android-flip 주소 및 다운로드: https://github.com/openaphid/android-flip 4. SwipeBackLayout 주소 및 다운로드: https://github.com/Issacw0ng/SwipeBackLayout 6. Android-ParallaxHeaderViewPager 주소 및 다운..