Broadcast(2)
-
[JAVA] Foreground Service, send Intent object and thread
*Foreground Service를 동작하면서 Thread를 돌리고 Foregroudn Service를 동작할때 Intent에 Intent Object를 전달하는 방법 *MainActivity Intent getIntent = getIntent(); testSerializable testSerializable = (com.example.myapplication.testSerializable) getIntent.getSerializableExtra("userIntent"); if(testSerializable != null){ Log.d(TAG, "NUM : " + testSerializable.getNum()); }else{ Log.d(TAG,"userObject Null"); } 1. getInten..
2021.02.20 -
[JAVA] Foreground Service & SMS Broadcast Example
*Foreground Service Example https://androidwave.com/foreground-service-android-example/ Foreground Service Android Example - AndroidWave In this Post, I'll explain about foreground service android, How does work? What are the advantages and implementation? At last, I will prepare a foreground service sample app. androidwave.com 해당 예제를 베이스삼아 Foreground Service가 도는 상태에서 SMS Broadcast 를 받는 예제를 만들어보..
2021.02.19