What does this string in the Manifest mean?

0

What exactly does "0x000004B4" mean? I have seen android:configChanges= before when regarding screen orientation, or pixel density, but have no idea what these letters and numbers mean. I'm very new and would like to know how the more commonly seen strings work. Much appreciated.

android
xml
encoding
utf-8
android-manifest
asked on Stack Overflow Mar 9, 2019 by Donovan Hale • edited Mar 9, 2019 by Phantômaxx

1 Answer

0

I can tell you that each attribute in the "android:configChanges" field resolves to a different value:

https://developer.android.com/reference/android/R.attr.html#configChanges

So my guess is that the attribute values somehow add up to uniquely identify which attributes were added in the Manifest.

answered on Stack Overflow Mar 9, 2019 by Gavin Wright

User contributions licensed under CC BY-SA 3.0