구글링해서 찾은 내용을 기록용으로 남겨둠.
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 가 있는경우, 연결된걸로 처리.
Trackback Address :: 이 글에는 트랙백을 보낼 수 없습니다