English 中文(简体)
在多大程度上安家账户管理人储存了具体的优惠?
原标题:Where does Android Account Manager store account specific preferences?

我早就成功地创建了各种账户认证人/服务,他们各自喜欢。 这些偏好是顽固的,但我不知道在什么地方储存这些偏好。 我用贝 ad来信电话,但我似乎找不到与我特定账户的偏好相对应的“共享”文档。

人人都有这方面的经验?

问题回答

我很想知道同样的情况,因为我正在寻找什么地方和海底将Bundle“Exras”存放在账户中。

它是在Kingk数据库(需要根植你的电话以提取和浏览):

/data/system/users/0/accounts.db

请你说明:

sqlite> select * from accounts;
24|john.doe|com.evernote|

然后利用该补贴寻找额外资金:

sqlite> select * from extras where accounts_id = 24;
70|24|userId|8305749

就我所知,<代码>/data/system/users/0/accounts.db在目前和海底版本上没有真正使用。

我在<代码>/数据/系统_de/0/accounts_de.db上发现了我的账户数据。

此外,在<代码>/数据/系统_ce/0/accounts_ce.db上似乎还有相当一部分圆角认证。

很可能不是,因为通常,你不得不注意哪些地方和海底储存共同的偏好。

如果您使用https://stackoverflow.com/a/10888411/404597> 账户优惠活动,P referenceManager.getDefault CommonP参比()表明,缺省优惠储存在application Pack的优惠组合中。 例如,如果是,

    <manifest package="com.my.app.account" ... >

场所储存在

    /data/data/com.my.app.account/shared_prefs/com.my.package.account_preferences.xml

这些成果来自安的2.3个支持者。





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签