2016-09-16 5 views
2

Chrome에서 Android Tethering & 휴대용 핫스팟 메뉴로 연결되는 웹 링크를 만들려고합니다.Chrome Android 브라우저에서 Android Tethering 메뉴로 사용자를 이동시키는 방법은 무엇인가요?

안드로이드에 크롬 URL의 의도를 전달하는 지원 : https://developer.chrome.com/multidevice/android/intents

그러나, 메뉴 (: https://developer.android.com/guide/components/intents-common.html 안드로이드 일반적인 의도)를 호출 할 알려진 표준 의도있을 것 같지 않습니다.

그 방법은 명백한 의도를 사용하고 있을까요? 그렇다면 URL에서 "구성 요소"의 구문이 어떻게 나타나야합니까? #Intent; 액션 = android.intent.action.MAIN, 카테고리 = android.intent.category.LAUNCHER; 패키지 = com.android.settings, 구성 요소 = what_should_go_here; 끝

나는에 대한 의도에 대한에서 찾을 수있는 가장 가까운 테 더링 메뉴 : how to open configure portable Wi-Fi hotspot setting by onclick?

답변

0

알아 냈습니다. 의도를 형식화하는 방법은 다음과 같습니다.

#Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;component=com.android.settings/.TetherSettings;end 
관련 문제