第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在繼續(xù)之前檢查是否授予了在存儲(chǔ)上寫(xiě)入的權(quán)限

在繼續(xù)之前檢查是否授予了在存儲(chǔ)上寫(xiě)入的權(quán)限

慕婉清6462132 2024-01-05 11:00:24
我的應(yīng)用程序出現(xiàn)問(wèn)題。要使用選項(xiàng),我需要授予外部存儲(chǔ)訪(fǎng)問(wèn)權(quán)限。我在那里找到了完美的代碼:public  boolean isStoragePermissionGranted() {if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {    if (checkSelfPermission(android.Manifest.permission.WRITE_EXTERNAL_STORAGE)            == PackageManager.PERMISSION_GRANTED) {        Log.v(TAG,"Permission is granted");        return true;    } else {        Log.v(TAG,"Permission is revoked");        ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, 1);        return false;    }}else { //permission is automatically granted on sdk<23 upon installation    Log.v(TAG,"Permission is granted");    return true;}}問(wèn)題是,代碼工作正常,但我不明白如果未授予訪(fǎng)問(wèn)權(quán)限,如何阻止我自己的代碼繼續(xù)(或等待用戶(hù)單擊“允許”,然后再繼續(xù)我的代碼)。我的代碼:isStoragePermissionGranted();        File outputFile = new File("");            InputStream is = getResources().openRawResource(((Sound) adapter.getItem(index)).getMpsound());            try {                byte[] buffer = new byte[is.available()];                is.read(buffer);                File outputDir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);                outputFile = new File(outputDir, getResources().getResourceEntryName(((Sound) adapter.getItem(index)).getMpsound()) + ".mp3");                OutputStream os = new FileOutputStream(outputFile);                os.write(buffer);            } catch (IOException e) {                e.printStackTrace();            }            Intent share = new Intent(Intent.ACTION_SEND);            share.setType("audio/*");            share.putExtra(Intent.EXTRA_STREAM, FileProvider.getUriForFile(this, BuildConfig.APPLICATION_ID + ".provider", outputFile));            share.putExtra(Intent.EXTRA_TEXT, "\"" + ((Sound) adapter.getItem(index)).getTitre_show() + "\" shared by my app !");            startActivity(Intent.createChooser(share, "Share Sound File"));            return true;目前,一切都已執(zhí)行,即使未授予訪(fǎng)問(wèn)權(quán)限,應(yīng)用程序也會(huì)嘗試共享文件。所以這是行不通的。如果我返回,則會(huì)彈出請(qǐng)求允許訪(fǎng)問(wèn)的窗口,等待答案。我怎樣才能做到這一點(diǎn)?
查看完整描述

1 回答

?
30秒到達(dá)戰(zhàn)場(chǎng)

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超6個(gè)贊

改變這一行

isStoragePermissionGranted();

這應(yīng)該可行。

if(isStoragePermissionGranted())


查看完整回答
反對(duì) 回復(fù) 2024-01-05
  • 1 回答
  • 0 關(guān)注
  • 170 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)