How to get dimensions of a connected Android Wear device for making bitmaps smaller?

核能气质少年 提交于 2019-12-11 14:18:35

问题


I would like to resize large images for connected Android Wear device. I don't want to transmit large images over Bluetooth. Is there some generic way? I don't want to hardcode screen size for a specific device.


回答1:


If you want such kind of optimizations you can ask particular device for a configuration (resolution etc.)

For the communication you can use one of WearableApi:
https://developer.android.com/training/wearables/data-layer/index.html

Either DataApi or MessageApi.

But I think you should use MessageApi in that case.
You will need to send a configuration from Watch to your Phone and then store it on Phone. From my test I can tell that nodeId appears to be constant [confirmation needed] - even after reboots. Your Phone will need to ask for the configuration only once and store this configuration (associated to sender's nodeId) for later use.
Then if you're about to send a bitmap to a connected Node, you need just to read it's configuration (stored locally) and resize that bitmap to appropriate size:)




回答2:


The documentation states, that the background images should be 640x400px if you want parallax effect or 400x400px if you don't want it.



来源:https://stackoverflow.com/questions/24957196/how-to-get-dimensions-of-a-connected-android-wear-device-for-making-bitmaps-smal

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!