Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- css
- R프로그래밍
- html
- error
- spring
- MySQL
- android fragment
- tomcat
- 안드로이드
- Exception
- Android Apk 이름 변경
- Firebase
- JavaScript
- jQuery
- Android Apk 이름
- Android Apk
- release Apk
- Eclipse
- Android
- release unsigned
- android error
- java error
- CSS사용법
- fragment
- Program type already present
- Java
- FLUTTER
- apache gzip
- Kotlin
- DataTable
Archives
- Today
- Total
목록BroadcastReciver app to app in Android (1)
selfstarter
BroadcastReciver app to app in Android
BroadcastReciver app to app BroadcastReciver란 Android 시스템 등으로 부터 어떤 이벤트가 발생했을 시 수신등록을 했다면 수신 알람을 받는 기능이다. 그러므로 A와 B 둘 다 같은 폰에 있는 app이어야 한다 BroadcastReciver app to app Example send broadcast app send broadcast to B when I click send button public void click(View v) { Intent intent = new Intent(); intent.setAction("com.test.broadcastexample"); // action name intent.putExtra("data", "Notice me senp..
App/Android
2020. 3. 18. 15:12