यहां कई अनुमति अनुरोधों के साथ विस्तृत उदाहरण दिया गया है: -
ऐप को स्टार्टअप में 2 अनुमतियां चाहिए। SEND_SMS और ACCESS_FINE_LOCATION (दोनों का उल्लेख मैनिफ़ेस्ट। xml) में है।
मैं सपोर्ट लाइब्रेरी v4 का उपयोग कर रहा हूं जो एंड्रॉइड प्री-मार्शमैलो को संभालने के लिए तैयार है और इसलिए बिल्ड वर्जन को चेक करने की कोई आवश्यकता नहीं है।
जैसे ही ऐप शुरू होता है, यह एक साथ कई अनुमतियों के लिए पूछता है। यदि दोनों अनुमतियाँ दी जाती हैं तो सामान्य प्रवाह चला जाता है।
public static final int REQUEST_ID_MULTIPLE_PERMISSIONS = 1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if(checkAndRequestPermissions()) {
// carry on the normal flow, as the case of permissions granted.
}
}
private boolean checkAndRequestPermissions() {
int permissionSendMessage = ContextCompat.checkSelfPermission(this,
Manifest.permission.SEND_SMS);
int locationPermission = ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION);
List<String> listPermissionsNeeded = new ArrayList<>();
if (locationPermission != PackageManager.PERMISSION_GRANTED) {
listPermissionsNeeded.add(Manifest.permission.ACCESS_FINE_LOCATION);
}
if (permissionSendMessage != PackageManager.PERMISSION_GRANTED) {
listPermissionsNeeded.add(Manifest.permission.SEND_SMS);
}
if (!listPermissionsNeeded.isEmpty()) {
ActivityCompat.requestPermissions(this, listPermissionsNeeded.toArray(new String[listPermissionsNeeded.size()]),REQUEST_ID_MULTIPLE_PERMISSIONS);
return false;
}
return true;
}
ContextCompat.checkSelfPermission (), ActivityCompat.requestPiers (), ActivityCompat.shouldShowRequestPermissionRationale () सपोर्ट लाइब्रेरी का हिस्सा हैं।
यदि एक या अधिक अनुमतियां प्रदान नहीं की जाती हैं, तो ActivityCompat.requestPien () अनुमतियों का अनुरोध करेगा और नियंत्रण onRequestPcriResult () कॉलबैक विधि पर जाता है।
आपको onRequestPiersResult () कॉलबैक विधि में shouldShowRequestPermissionRationale () ध्वज के मान की जाँच करनी चाहिए।
केवल दो मामले हैं: -
केस 1: -सभी समय उपयोगकर्ता इनकार की अनुमति (पहले समय सहित) पर क्लिक करता है, यह सही लौटेगा। इसलिए जब उपयोगकर्ता इनकार करता है, तो हम अधिक स्पष्टीकरण दिखा सकते हैं और फिर से पूछते रह सकते हैं
केस 2: -यदि उपयोगकर्ता "फिर कभी नहीं पूछता है" का चयन करें तो यह गलत वापस आ जाएगा। इस मामले में, हम सीमित कार्यक्षमता के साथ जारी रख सकते हैं और उपयोगकर्ता को अधिक कार्यात्मकताओं के लिए सेटिंग्स से अनुमतियों को सक्रिय करने के लिए या हम एप्लिकेशन के लिए अनुमतियाँ तुच्छ होने पर, सेटअप समाप्त कर सकते हैं।
मामला एक
मामला -2
@Override
public void onRequestPermissionsResult(int requestCode,
String permissions[], int[] grantResults) {
Log.d(TAG, "Permission callback called-------");
switch (requestCode) {
case REQUEST_ID_MULTIPLE_PERMISSIONS: {
Map<String, Integer> perms = new HashMap<>();
// Initialize the map with both permissions
perms.put(Manifest.permission.SEND_SMS, PackageManager.PERMISSION_GRANTED);
perms.put(Manifest.permission.ACCESS_FINE_LOCATION, PackageManager.PERMISSION_GRANTED);
// Fill with actual results from user
if (grantResults.length > 0) {
for (int i = 0; i < permissions.length; i++)
perms.put(permissions[i], grantResults[i]);
// Check for both permissions
if (perms.get(Manifest.permission.SEND_SMS) == PackageManager.PERMISSION_GRANTED
&& perms.get(Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED) {
Log.d(TAG, "sms & location services permission granted");
// process the normal flow
//else any one or both the permissions are not granted
} else {
Log.d(TAG, "Some permissions are not granted ask again ");
//permission is denied (this is the first time, when "never ask again" is not checked) so ask again explaining the usage of permission
// // shouldShowRequestPermissionRationale will return true
//show the dialog or snackbar saying its necessary and try again otherwise proceed with setup.
if (ActivityCompat.shouldShowRequestPermissionRationale(this, Manifest.permission.SEND_SMS) || ActivityCompat.shouldShowRequestPermissionRationale(this, Manifest.permission.ACCESS_FINE_LOCATION)) {
showDialogOK("SMS and Location Services Permission required for this app",
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
switch (which) {
case DialogInterface.BUTTON_POSITIVE:
checkAndRequestPermissions();
break;
case DialogInterface.BUTTON_NEGATIVE:
// proceed with logic by disabling the related features or quit the app.
break;
}
}
});
}
//permission is denied (and never ask again is checked)
//shouldShowRequestPermissionRationale will return false
else {
Toast.makeText(this, "Go to settings and enable permissions", Toast.LENGTH_LONG)
.show();
// //proceed with logic by disabling the related features or quit the app.
}
}
}
}
}
}
private void showDialogOK(String message, DialogInterface.OnClickListener okListener) {
new AlertDialog.Builder(this)
.setMessage(message)
.setPositiveButton("OK", okListener)
.setNegativeButton("Cancel", okListener)
.create()
.show();
}