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 | 31 |
Tags
- 스튜디오
- 유튜브
- coroutine
- 코틀린
- viewpager
- ADB
- GIT
- 웹뷰
- Kotlin
- build
- studio
- MVVM
- 레트로핏
- 에러
- 깃헙
- WebView
- Gradle
- Github
- 안드로이드 스튜디오
- 안스
- 안드로이드스튜디오
- 안드로이드
- image
- error
- 코루틴
- 의존성주입
- Android
- dart
- RecyclerView
- Retrofit
Archives
- Today
- Total
코딩하는 일용직 노동자
모바일 핫스팟 및 테더링 메뉴 바로가기 intent 본문
모바일 핫스팟 및 테더링 메뉴 바로가기 intent
val cn = ComponentName("com.android.settings", "com.android.settings.TetherSettings")
val intent: Intent = Intent(Intent.ACTION_MAIN, null).apply {
addCategory(Intent.CATEGORY_LAUNCHER)
setComponent(cn)
flags = Intent.FLAG_ACTIVITY_NEW_TASK
}
startActivity(intent)
'안드로이드' 카테고리의 다른 글
junit5:1.6.1.0 Received status code 502 from server: Bad Gateway 빌드에러 해결사례 (0) | 2024.12.13 |
---|---|
CoroutineFlow에서 Hot Stream과 Cold Stream 이란? (0) | 2024.09.07 |
android:duplicateParentState 속성에 대하여... (0) | 2024.07.24 |
java.lang.SecurityException: Writable dex file '...classes2.dex' is not allowed. 에러 해결 (0) | 2024.05.27 |
Compose Row&Column 의 배치속성 (0) | 2024.05.21 |