본문 바로가기
반응형

개발/APP25

안드로이드 MIUI 보안의 자동시작 https://stackoverflow.com/questions/38995469/how-to-get-miui-security-app-auto-start-permission-programmatically thread #1 https://stackoverflow.com/a/40932178/1537413String xiaomi = "Xiaomi"; final String CALC_PACKAGE_NAME = "com.miui.securitycenter"; final String CALC_PACKAGE_ACITIVITY = "com.miui.permcenter.autostart.AutoStartManagementActivity"; if (deviceManufacturer.equalsIgnoreCase(xiaomi.. 2018. 11. 22.
안드로이드 전화 수발신 이력 발생에 따른 옵저버 처리 https://stackoverflow.com/questions/4422410/how-to-implement-a-contentobserver-for-call-logsHere is the answer. Dont forget to register the content observer with this method:registerContentObserver (Uri uri, boolean notifyForDescendents, ContentObserver observer)And then you can create it like this.public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); this.getAppl.. 2018. 11. 22.
안드로이드 브로드캐스트리시버 제한 업데이트(Oreo 8.0) 출처:https://medium.com/@iiro.krankka/its-time-to-kiss-goodbye-to-your-implicit-broadcastreceivers-eefafd9f4f8a It’s time to kiss goodbye to your implicit BroadcastReceiversThis article was also posted on Codemate Blog.Android O Developer Preview is out! It’s time to start guessing what delicious dessert the letter O will stand for.Every Android developer should check the list of behavior changes .. 2018. 11. 22.
안드로이드 전화 수신 발신 히스토리 출처: http://happyryu.tistory.com/265 안드로이드로 앱을 개발할때 가끔씩 전화 이력에 접근해야할 필요가 있을때가 있습니다. 이럴때에는 CallLog를 사용하면 편리한데요, 사용방법은 아래와 같습니다. 먼저 manifests 파일에 권한을 설정해주고요. 그 다음은 코드를 구현해주면됩니다. @Overrideprotected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar);.. 2018. 11. 22.
반응형