I've recently moved from Eclipse to Android Studio, and it looks great. However, I can't seem to find how to display variables in debugging mode as hexadecimal values instead of decimal values. Any help would be appreciated. Thanks
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- In IntelliJ IDEA, how can I create a key binding t
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
In the debug window, right click on the value you would like to view in hex and choose
View as -> Hex
. This can be done in theVariables
orWatches
views.I was wondering the same thing, especially how to do this by default as @adnako asked. I finally found an answer so I will post here, too.
Manually change a single value
Right click > View as... > Hex
Display all values as hex by default
Right click > Custimize Data Views... > Show hex values for primitives > Apply
(Note: these images are from Android Studio 1.2)