我开始在Android中开发,我试图了解权限,但是我制作的应用程序不工作,并且"危险"应用程序正在打开,即使打开器应用程序没有必要的权限来打开它。
危险清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.second_dangerousapp"
android:versionCode="1"
android:versionName="1.0" >
<permission
android:name="com.dangerous_app.permission.DANGEROUS_ACTIVITY"
android:label="@string/label_dangerousActivity"
android:description="@string/description_dangerousActivity"
android:permissionGroup="android.permission-group.APP_INFO" >
</permission>
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.second_dangerousapp.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.DANGEROUS_ACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
应用本身是一个简单的带有文本的textview。
然后打开应用程序权限清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.second_permissions"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.second_permissions.MainActivity"
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>
主活动
的代码protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button btnOpen = (Button) findViewById(R.id.buttonOpen);
btnOpen.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent open = new Intent("android.intent.action.DANGEROUS_ACTIVITY");
startActivity(open);
}
});
}
我做错了什么。因为现在权限应用应该不能打开危险应用,因为它没有所需的权限。
因为现在权限应用不能打开危险应用,因为它没有所需的权限。
你不用自定义权限来保护应用中的任何东西。除了定义权限之外,只有<permission>
元素没有任何作用。您还需要在某处应用权限,例如通过<activity>
上的android:permission
属性。
您可能还想阅读这篇关于自定义权限的意外行为的博客文章。