336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
구글링해서 찾은 내용을 기록용으로 남겨둠.
http://davistechyinfo.blogspot.kr/2014/07/android-determining-if-wearable-device.html
위 블로그 코드 요약.
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addApi(Wearable.API)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();
connection callback 이 오면
Wearable.NodeApi 를 이용,
NodeApi.GetConnectedNodesResult nodes =
Wearable.NodeApi.getConnectedNodes(mGoogleApiClient).await();
if (nodes != null && nodes.getNodes().size() > 0) {
isConnectedToWearable = true;
}
연결된 node 가 있는경우, 연결된걸로 처리.
'개발 > Android' 카테고리의 다른 글
Material Design 적용기.. (1) | 2015.11.18 |
---|---|
알파버전 스토어 등록하면서 발견한 것들 (0) | 2015.11.18 |
비콘 관련 삽질기 (0) | 2015.11.13 |
구글 개발자 등록, 알파 테스트 apk 등록 (0) | 2015.11.09 |
안드로이드에서 화면 회전시 나타나는 문제- Android Screen Rotation Issue (7) | 2009.06.24 |