我对 sharedUserID 感到困惑.sharedUserId 的用途是什么?如何使用?在 android 中在哪里使用?
I am confused in sharedUserID.what is use of sharedUserId?How to use?Where to use in android?
SharedUserId 用于在两个或多个应用程序之间共享数据、进程等.它在 AndroidManifest.xml 中定义,如,
SharedUserId is used to share the data,processes etc between two or more applications. It is defined in AndroidManifest.xml like,
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
android:sharedUserId="android.uid.shared"
android:sharedUserLabel="@string/sharedUserLabel"
...>
并在 Android.mk 中为该应用定义共享参数,例如
and define the shared parameter in Android.mk for that app, like
LOCAL_CERTIFICATE := shared
希望对你有所帮助.
这篇关于Android 中的 sharedUserId 是什么,它是如何使用的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!