运行我的应用时出现此错误。我还在manifest.xml中包含了surfaceFlinger的权限
"uses-permission android:name="android.permission.ACCESS_SURFACE_FLINGER"
但仍然在LogCat中提供相同的错误" can't access the SurfaceFlinger"
。
基本上我想在Dev工具中运行开发设置代码。
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
try {
Class partypes[] = new Class[1];
partypes[0] = String.class;
Method getService= ServiceManager.getMethod("getService", partypes );
Object arglist[] = new Object[1];
arglist[0] = "SurfaceFlinger";
IBinder flinger= (IBinder)getService.invoke(smObject, arglist );
// IBinder flinger = ServiceManager.getService("SurfaceFlinger");
if (flinger != null) {
Parcel data = Parcel.obtain();
data.writeInterfaceToken("android.ui.ISurfaceComposer");
data.writeInt(isChecked ? 1 : 0);
flinger.transact(mCode, data, null, 0);
data.recycle();
updateFlingerOptions();
}
} catch (RemoteException ex) {
}
**catch (SecurityException e) {
// TODO Auto-generated catch block
String err=e.toString();
Toast.makeText(DevelopmentSetting.this, err, Toast.LENGTH_SHORT).show();
}**
catch (NoSuchMethodException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalArgumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InvocationTargetException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
在catch SecurityException中,它给出了错误java.lang.securityException但logcat表示权限被拒绝:无法访问surfaceFlinger。
并且manifest.xml在这里
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.nustian.android"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.ACCESS_SURFACE_FLINGER"/>
<uses-permission android:name="android.permission.SET_WALLPAPER" />
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".DevelopmentSetting"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
有人帮助我。
答案 0 :(得分:3)
要解决此问题,请将其添加到清单文件中。 UID媒体能够使用表面flinger API,因此与它共享UID将允许您的应用也使用它。
coreApp="true"
android:sharedUserId="android.uid.media"
答案 1 :(得分:2)
您的应用需要使用平台证书进行签名才能访问此权限。只有系统应用通常会这样。更多信息:
https://groups.google.com/forum/#!topic/android-porting/aN6D_vL9xxE
答案 2 :(得分:0)
不要忘记添加相对权限:
<uses-permission android:name="android.permission.ACCESS_SURFACE_FLINGER" />