targetSdkVersion 23 通过 accountManager.getAccounts() 返回 0 长度数组
Posted
技术标签:
【中文标题】targetSdkVersion 23 通过 accountManager.getAccounts() 返回 0 长度数组【英文标题】:targetSdkVersion 23 returns 0 length array via accountManager.getAccounts() 【发布时间】:2016-04-06 07:07:47 【问题描述】:我在真正的 Nexus 5 设备 android 6.0.1 中观察到以下奇怪的结果
我在应用启动期间运行以下简单代码。
Pattern emailPattern = Patterns.EMAIL_ADDRESS; // API level 8+
AccountManager accountManager = AccountManager.get(this);
Account[] accounts = accountManager.getAccounts();
如果我将targetSdkVersion
设置为 22、21、19,上面的代码可以正常工作。它返回非空数组。
但是,当我更改 targetSdkVersion
并进行测试时
defaultConfig
applicationId "org.yccheok.myapplication"
minSdkVersion 19
targetSdkVersion 23
versionCode 1
versionName "1.0"
以上代码返回0长度数组!
知道为什么在针对 targetSdkVersion=23
编译时会出现问题。
注意,在产生问题的过程中,每当您更改targetSdkVersion
并通过Android Studio运行它时,您需要清除您的应用数据,清除您的应用缓存并手动为所有用户卸载。
以下是在 Nexus 5 设备、Android 6.0.1 中重现该问题的步骤
-
通过 File -> New -> New Projetct 在 Android Studio 中创建项目...
选择“空白活动”
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.yccheok.myapplication">
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
build.gradle
apply plugin: 'com.android.application'
android
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig
applicationId "org.yccheok.myapplication"
minSdkVersion 19
targetSdkVersion 23
versionCode 1
versionName "1.0"
buildTypes
release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
dependencies
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
MainActivity.java
import android.accounts.Account;
import android.accounts.AccountManager;
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.util.Patterns;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;
import java.util.regex.Pattern;
public class MainActivity extends AppCompatActivity
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View view)
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
.setAction("Action", null).show();
);
int targetSdkVersion = 0;
try
PackageInfo packageInfo = getPackageManager().getPackageInfo(getPackageName(), 0);
targetSdkVersion = packageInfo.applicationInfo.targetSdkVersion;
catch (PackageManager.NameNotFoundException e)
android.util.Log.i("CHEOK", e.getMessage());
Pattern emailPattern = Patterns.EMAIL_ADDRESS; // API level 8+
AccountManager accountManager = AccountManager.get(this);
Account[] accounts = accountManager.getAccounts();
android.util.Log.i("CHEOK", targetSdkVersion + " : numnber of accoutn by ??? = " + accounts.length);
for (Account account : accounts)
if (emailPattern.matcher(account.name).matches())
String possibleEmail = account.name;
android.util.Log.i("CHEOK", "possibleEmail = " + possibleEmail);
@Override
public boolean onCreateOptionsMenu(Menu menu)
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
@Override
public boolean onOptionsItemSelected(MenuItem item)
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings)
return true;
return super.onOptionsItemSelected(item);
知道为什么 targetSdkVersion 23 通过 accountManager.getAccounts() 返回长度为 0 的数组
【问题讨论】:
可能和新的权限系统有关?也许您需要在运行时请求适当的权限并且调用会优雅地失败?只是在黑暗中拍摄。 【参考方案1】:GET_ACCOUNTS 是一个dangerous permission,并且在使用目标sdk 23 时需要使用runtime permissions 进行管理,否则它将不起作用。
您实际上需要在运行时从用户那里request permission。 示例:
ActivityCompat.requestPermissions(this, new String[]
Manifest.permission.GET_ACCOUNTS, 1);
int permissionCheck = ContextCompat.checkSelfPermission(thisActivity,
Manifest.permission.GET_ACCOUNTS);
我已在 this answer here 中详细介绍了这一点。
危险权限涵盖应用需要涉及用户私人信息的数据或资源的区域,或者可能影响用户存储的数据或其他应用的运行的区域。例如,读取用户联系人的能力是一种危险的权限。如果一个应用声明它需要一个危险的权限,用户必须明确地授予该应用权限。
【讨论】:
即使有了这一切,我仍然得到 0 返回的数组大小,我的目标是 API 27 @JPM 您需要发布一个包含任何相关详细信息的自包含问题。在 cmets 中无法回答。 我已经在我编写的 2 个不同的应用程序中看到了这一点,但没有解决方案。我将发布一个单独的问题,但我担心如果我这样做其他人只会指出这个解决方案。 @JPM 解释您尝试过的方法以及该解决方案没有奏效的原因。 @JPM 向他们请求READ_CONTACTS
权限,它将返回帐户列表。以上是关于targetSdkVersion 23 通过 accountManager.getAccounts() 返回 0 长度数组的主要内容,如果未能解决你的问题,请参考以下文章
产品资讯 | mPaaS 适配 targetSdkVersion 29
当我将 targetSdkVersion 29 更新为 targetSdkVersion 30 时出现问题
ListView 项目布局在 targetSdkVersion="17" 和 targetSdkVersion="18" 之间有所不同