How do you find options about an Activity programatically that we declared in the manifest? For example, I want to know if and what android:configChanges or android:screenOrientation was set to.
How do you find options about an Activity programatically that we declared in the
Share
Use
PackageManagerto obtain theApplicationInfo,ActivityInfo, etc. with the information that you are seeking.configChangesandscreenOrientationare inActivityInfo.