編輯:關於Android編程
天哪,這篇文章終於說道如何自定義權限了,左盼右盼,其實這個自定義權限相當easy。為了方便敘述,我這邊會用到兩個app作為例子示范。
Permission App: used to define a new permission
這個作為定義權限的App,我稱之為Permission App.
Client App: used to access the specified activity of Permission App
這個作為訪問上述自定義權限的App,我稱之為Client App
先看如何寫Permission App
第一步
Permission App很簡單,它的任務就是定一個Permission,使用< permission>標簽即可,我們假設內容如下:
復制代碼 代碼如下:
<permission android:name="custom.permission.STARTACTIVITY" android:description="@string/permission_dcr" android:protectionLevel=signatureOrSystem android:label="label"></permission>
第二步
然後在定一個Activity,這個Activity很簡單就是展示下一行字,如”Hello from Custiom Permission Activity!”這裡就不詳述。
第三步
最重要的地方:我們需要為這個Activity指明訪問權限,權限即為我們剛申請的權限,這個需要同樣需要在AndroidManifest.xml文件中標識,如下:
復制代碼 代碼如下:
<activity
android:name="com.example.custompermission.MainActivity"
android:label="@string/app_name" android:permission="custom.permission.STARTACTIVITY">
</activity>
這個Activity於是就被打上了必須使用” custom.permission.STARTACTIVITY”權限才能訪問的印記。
接著寫Client App
至於如何寫Client App,那就so so so … easy了,只需兩步:
第一步
在AndroidManifest.xml文件中首先申請權限,如下:
復制代碼 代碼如下:
<uses-permission android:name="custom.permission.STARTACTIVITY"/>
第二步
訪問Permission App表明需要該權限的Activity,代碼如下:
復制代碼 代碼如下:
Intent in = new Intent();
in.setClassName("com.example.custompermission", "com.example.custompermission.MainActivity");
startActivity(in);
大功告成
我們可以測試下效果,首先安裝Permission App,然後接著安裝Client App,結果如下:
點擊之後
另外我曾經在Android Permission權限機制引子提到過Protection Level問題,這邊我同樣測試下這個Protection Level,下面結果中Y表示可以正常訪問,N則表示不可以訪問。
需要注意的是,使用自定義Permission的activity如果設置了:
復制代碼 代碼如下:
<activity
android:name="com.example.custompermission.MainActivity"
android:label="@string/app_name" android:permission="custom.permission.STARTACTIVITY">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
那就不能從Launcher中啟動該App,因為只有你的Launcher必須使用了uses-permission去請求獲取custom.permission.STARTACTIVITY權限,事實上你的Launcher是不具備已經請求自定義權限的。
Launcher會報:Application is not installed on your phone. 的錯誤.
計算機圖形表示的原理 加載大圖出現OOM 縮放加載大的圖片資源 創建一個原圖的副本 圖形處理的常用的API 傻瓜版美圖秀秀 畫畫版計算機圖形表示的原理首先要明確的一點是,
1.ContentProvider簡介 在Android中有些數據(如通訊錄、音頻、視頻文件等)是要供很多應用程序使用的,為了更好地對外提供
Android用戶界面設計:基本按鈕 本文向你展示了在你的Android應用程序中創建一個簡單的Button或ImageButton控件的步驟。首先,你會
效果圖:使用了 一個時間相關的工具類 package com.yqy.yqy_date;import android.util.Log;import java.