SIV*_*R.J 2 android android-contentprovider android-studio android-6.0-marshmallow
我正在开发一个内容提供商应用程序。在该应用程序的清单中,我在应用程序标记中放置了一个提供程序元素。以下是代码
<provider
android:name=".PlatesContentProvider"
android:authorities="com.tag.custom_contentproviderdemo.Plates"
android:enabled="true"
android:readPermission="PlatesContentProvider._READ_PERMISSION"
android:writePermission="PlatesContentProvider._WRITE_PERMISSION"
android:exported="true" >
Run Code Online (Sandbox Code Playgroud)
我还开发了另一个应用程序,即 CPClient。它将向上述内容提供者读取/写入数据。我在其清单文件中被声明为元素。
以下是代码
<uses-permission android:name="PlatesContentProvider._READ_PERMISSION"/>
<uses-permission android:name="PlatesContentProvider._WRITE_PERMISSION"/>
Run Code Online (Sandbox Code Playgroud)
在 CPClient 的启动器活动中,我检查了此权限。如果未授予,则意味着我将请求权限。但在请求权限时,它不会显示请求权限对话框,并且始终不授予权限。
以下是代码
private final String permissionsRequired="PlatesContentProvider._READ_PERMISSION";
private final String permissionsRequired2= "PlatesContentProvider._WRITE_PERMISSION";
private String[] permissions=new String[]{permissionsRequired,permissionsRequired2};
public void process()
{
checkPermission();
if(!permission_granted)
{
Toast.makeText(this,"Permission not granted.Requesing permission....",Toast.LENGTH_SHORT).show();
requestPermission1();return;
}
else
{
bindWidgetEvents(); //After permission granted I will perform some process
Log.d(TAG,"Permission granted");return;
}
}
public void checkPermission()
{
int permit=this.checkSelfPermission(permissionsRequired);
if(permit== PackageManager.PERMISSION_GRANTED) {
Log.d(TAG, "permission granted");
permission_granted=true;return;
}
else
Log.d(TAG,"permission not granted");
permission_granted=false;
}
public void requestPermission1()
{
//boolean show=this.shouldShowRequestPermissionRationale(permissionsRequired);
//Log.d(TAG,"need to show = "+show);
Thread thread=new Thread()
{
public void run()
{
Log.d(TAG,"B4 call request permission");
requestPermissions(permissions,CONTENT_PROVIDER_PERMISSION_REQUEST_CODE);
Log.d(TAG,"after call request permission");
}
};
thread.start();
}
public void onRequestPermissionsResult(int requestCode,String permissions1[], int[] grantResults)
{
Log.d(TAG,"onRequestPermissionsResult. req code="+requestCode);
if(requestCode==CONTENT_PROVIDER_PERMISSION_REQUEST_CODE)
{
Log.d(TAG,"Content provider permsion request code");
if(grantResults==null)
{
Log.d(TAG,"grant results is null");
Toast.makeText(this,"UnKnown error happened",Toast.LENGTH_LONG).show();
return;
}
int grant_results_size=grantResults.length;
Log.d(TAG,"Grant result size="+grant_results_size);
if(grant_results_size<1)
{
Log.d(TAG,"grant results size is <1");
Toast.makeText(this,"UnKnown error happened",Toast.LENGTH_LONG).show();
return;
}
if(grantResults[0]!=PackageManager.PERMISSION_GRANTED)
{
Log.d(TAG,"Permission not granted");
Toast.makeText(this,"Read Permission not granted",Toast.LENGTH_LONG).show();
}
if(grantResults[1]!=PackageManager.PERMISSION_GRANTED)
{
Log.d(TAG,"Permission not granted");
Toast.makeText(this,"Write Permission not granted",Toast.LENGTH_LONG).show();return;
}
Log.d(TAG,"Permission granted");
Toast.makeText(this,"Permission granted",Toast.LENGTH_SHORT).show();
bindWidgetEvents();
return;
}
else
{
Log.d(TAG,"not a Content provider permsion request code");
}
}
Run Code Online (Sandbox Code Playgroud)
以下是 android sdk 详细信息,我的目标和内容提供商应用程序和我的 CPClient 中的最小 sdk 版本均为 23。
我不知道我会错在哪里?
欢迎大家提出自己的想法。
您应该在“清单”块以及提供程序中声明您的权限。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="your.package">
<permission
android:name="PlatesContentProvider._READ_PERMISSION"
android:protectionLevel="normal" />
<permission
android:name="PlatesContentProvider._WRITE_PERMISSION"
android:protectionLevel="normal" />
<application>
<provider
android:name=".PlatesContentProvider"
android:authorities="com.tag.custom_contentproviderdemo.Plates"
android:enabled="true"
android:readPermission="PlatesContentProvider._READ_PERMISSION"
android:writePermission="PlatesContentProvider._WRITE_PERMISSION"
android:exported="true" >
</application>
</manifest>
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
2513 次 |
| 最近记录: |