#Android自定义权限
意思如下:
在Activity中该属性用来标示:当前Activity是否可以被另一个Application的组件启动:true允许被启动;false不允许被启动。
如果被设置为了false,那么这个Activity将只会被当前Application或者拥有同样user ID的Application的组件调用。
exported 的默认值根据Activity中是否有intent filter 来定。没有任何的filter意味着这个Activity只有在详细的描述了他的class name后才能被唤醒 .这意味着这个Activity只能在应用内部使用,因为其它application并不知道这个class的存在。所以在这种情况下,它的默认值是false。从另一方面讲,如果Activity里面至少有一个filter的话,意味着这个Activity可以被其它应用从外部唤起,这个时候它的默认值是true。
默认值:如果包含有intent-filter 默认值为true; 没有intent-filter默认值为false。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.yds.intenttest">
<permission
android:name="yds.permission.MY_CALL_PHONE"
android:description="@string/permdesc_deadlyActivity"
android:permissionGroup="yds.permission-group.MY_CALL_PHONE"
android:protectionLevel="signature" />
...
manifest>
对permission标签的各个属性大概说明一下,
name,该标签就是权限的名字啦。
description,该标签就是权限的介绍。
permissionGroup,指定该权限的组。
protectionLevel,指定保护级别。
...
<permission
android:protectionLevel="normal"
android:name="yds.permission.MY_CALL_PHONE"/>
...
<activity android:name=".PhoneActivity"
android:exported="true"
android:permission="yds.permission.MY_CALL_PHONE">
activity>
...
这里,在activity里定义android:permission=“yds.permission.MY_CALL_PHONE”,是因为如果不用这句,则其它任何程序都可以调用PhoneActivity,如果有了这句,则只有拥有该权限的应用才能调用PhoneActivity。
这里,android:exported="true"是必须的,否则,在IntentTest2调用时会报如下错误
Process: com.example.yds.intenttest2, PID: 29085
java.lang.SecurityException: Permission Denial: starting Intent { cmp=com.example.yds.intenttest/.PhoneActivity } from ProcessRecord{15c5807 29085:com.example.yds.intenttest2/u0a256} (pid=29085, uid=10256) not exported from uid 10258
当然,以下的方法也是可以的
...
<permission
android:protectionLevel="normal"
android:name="yds.permission.MY_CALL_PHONE"/>
...
<activity android:name=".PhoneActivity"
android:permission="yds.permission.MY_CALL_PHONE">
<intent-filter>
<action android:name="android.intent.action.test"/>
<category android:name="android.intent.category.DEFAULT"/>
intent-filter>
activity>
...
因为android:exported,如果包含有intent-filter 默认值为true; 没有intent-filter默认值为false。所以,以上两种写法都是可以的。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="这个页面被调用了"/>
LinearLayout>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.yds.intenttest" >
<permission
android:protectionLevel="normal"
android:name="yds.permission.MY_CALL_PHONE"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity android:name=".MainActivity"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
intent-filter>
activity>
<activity android:name=".PhoneActivity"
android:permission="yds.permission.MY_CALL_PHONE">
<intent-filter>
<action android:name="android.intent.action.test"/>
<category android:name="android.intent.category.DEFAULT"/>
intent-filter>
activity>
application>
manifest>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.yds.intenttest2.MainActivity">
<Button
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button"/>
android.support.constraint.ConstraintLayout>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.yds.intenttest2">
<uses-permission android:name="yds.permission.MY_CALL_PHONE"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
intent-filter>
activity>
application>
manifest>
package com.example.yds.intenttest2;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends Activity {
private Button btn;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn = (Button) findViewById(R.id.btn);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent();
intent.setClassName("com.example.yds.intenttest",
"com.example.yds.intenttest.PhoneActivity");
startActivity(intent);
}
});
}
}