Sunday, December 27, 2015

Requesting Permissions at Run Time in Android 6.0

Requesting Permissions at Run Time in Android 6.0

Beginning in Android 6.0 (API level 23), users grant permissions to apps while the app is running, not when they install the app. This approach streamlines the app install process, since the user does not need to grant permissions when they install or update the app. It also gives the user more control over the app's functionality; for example, a user could choose to give a camera app access to the camera but not to the device location. The user can revoke the permissions at any time, by going to the app's Settings screen.

On all versions of Android, your app needs to declare both the normal and the dangerous permissions it needs in its app manifest, as described in Declaring Permissions. However, the effect of that declaration is different depending on the system version and your app's target SDK level:

  • If the device is running Android 5.1 or lower, or your app's target SDK is 22 or lower: If you list a dangerous permission in your manifest, the user has to grant the permission when they install the app; if they do not grant the permission, the system does not install the app at all.
  • If the device is running Android 6.0 or higher, and your app's target SDK is 23 or higher: The app has to list the permissions in the manifest, and it must request each dangerous permission it needs while the app is running. The user can grant or deny each permission, and the app can continue to run with limited capabilities even if the user denies a permission request.
Note: Beginning with Android 6.0 (API level 23), users can revoke permissions from any app at any time, even if the app targets a lower API level. You should test your app to verify that it behaves properly when it's missing a needed permission, regardless of what API level your app targets.


Request Permissions

Following example will explain how to check the camera permission at runtime and granting and revoking permissions.


If your app needs a dangerous permission that was listed in the app manifest, it must ask the user to grant the permission. Android provides several methods you can use to request a permission. Calling these methods brings up a standard Android dialog, which you cannot customize.



AndroidManifest.xml:
-------------------------------


<?xml version="1.0" encoding="utf-8"?>

<
manifest xmlns:android="http://schemas.android.com/apk/res/android"

   
package="com.ramsandroid.checkpermission60">

<
uses-permission android:name="android.permission.CAMERA"/>

    <
application

       
android:allowBackup="true"

       
android:icon="@mipmap/ic_launcher"

       
android:label="@string/app_name"

       
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>




MainActivity.java:
------------------
package com.ramsandroid.checkpermission60;

import android.Manifest;
import android.content.pm.PackageManager;
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.ContextCompat;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {
int REQUEST_CAMERA = 1;
    @Override    protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.
activity_main);


if(ContextCompat.checkSelfPermission(this,Manifest.permission.CAMERA)!= PackageManager.PERMISSION_GRANTED){

ActivityCompat.
requestPermissions(this,
new String[]{Manifest.permission.CAMERA},
REQUEST_CAMERA);

}

}
@Overridepublic void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);

switch (requestCode){
case REQUEST_CAMERA:
if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {

// permission was granted, yay! Do the // camera-related task you need to do.
} else {

// permission denied, boo! Disable the // functionality that depends on this permission. }

break;
}

}
}

Requesting Permissions at Run Time in Android 6.0 Rating: 4.5 Diposkan Oleh: Unknown

1 comments:

  1. 1xbet korean - LegalBet
    1xbet korean. deccasino We have a lot choegocasino of different games. Best Online Betting Sites. 1XBET – 1xbet korean Best Welcome Bonus. Deposit Options.

    ReplyDelete