[android] Android에서 다운로드 폴더에 액세스하는 방법은 무엇입니까?

저는 새로운 안드로이드입니다. 파일을 다운로드 폴더에 다운로드 할 수있는 앱을 만들고 있습니다 (다운로드 관리자 사용). 에뮬레이터에서 다운로드 폴더로 이동하면 사진을 볼 수 있습니다. 다운로드 한 파일의 슬라이드 쇼를 표시하려면 어떻게 해당 폴더에 액세스 할 수 있습니까? 둘째,이 코드에 진행률 표시 줄을 추가하는 방법 :-

import java.util.Arrays;

import android.app.Activity;
import android.app.DownloadManager;
import android.app.DownloadManager.Query;
import android.app.DownloadManager.Request;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;

public class Download_managerActivity extends Activity {
     private long quueue_for_url;

     private DownloadManager dm;

        /** Called when the activity is first created. */
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);

            BroadcastReceiver receiver = new BroadcastReceiver() {
                @Override
                public void onReceive(Context context, Intent intent) {
                    String action = intent.getAction();

                    if (DownloadManager.ACTION_DOWNLOAD_COMPLETE.equals(action)) {
                        long downloadId = intent.getLongExtra(
                                DownloadManager.EXTRA_DOWNLOAD_ID, 0);
                        Query query = new Query();
                        query.setFilterById(quueue_for_url);
                        Cursor c = dm.query(query);
                        if (c.moveToFirst()) {
                            int columnIndex = c
                                    .getColumnIndex(DownloadManager.COLUMN_STATUS);
                            if (DownloadManager.STATUS_SUCCESSFUL == c
                                    .getInt(columnIndex)) {

                                ImageView view = (ImageView) findViewById(R.id.imageView1);
                                String uri_String_abcd = c
                                        .getString(c
                                                .getColumnIndex(DownloadManager.COLUMN_LOCAL_URI));
                                view.setImageURI(Uri.parse(uri_String_abcd));

                            }
                        }
                    }
                }
            };

            registerReceiver(receiver, new IntentFilter(
                    DownloadManager.ACTION_DOWNLOAD_COMPLETE));
        }

        public void onClick(View view) {
            dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);

            Request request_for_url = new Request(
                    Uri.parse("http://fc03.deviantart.net/fs14/i/2007/086/9/1/Steve_Jobs_portrait_by_tumb.jpg"));

            Request request_for_url1 = new Request(
                    Uri.parse("http://2.bp.blogspot.com/_q7Rxg4wqDyc/S5ZRVLxVYuI/AAAAAAAAAvU/fQAUZ2XFcp8/s400/katrina-kaif.jpg"));
            Request request_for_url2 = new Request(
                    Uri.parse("http://www.buzzreactor.com/sites/default/files/Bill-Gates1.jpg"));

            quueue_for_url = dm.enqueue(request_for_url);
            quueue_for_url = dm.enqueue(request_for_url1);
            quueue_for_url = dm.enqueue(request_for_url2);

        }

        public void showDownload(View view) {
            Intent i = new Intent();
            //try more options to show downloading , retrieving and complete
            i.setAction(DownloadManager.ACTION_VIEW_DOWNLOADS);
            startActivity(i);
        }
    }

다운로드 폴더에서 사진을 찍어 슬라이드 쇼처럼 표시하는 기능을하는 버튼을 추가하고 싶습니다.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="cmpe235.lab1"
      android:versionCode="1"
      android:versionName="1.0">
    <uses-sdk android:minSdkVersion="9" />

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

    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".Download_managerActivity"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>
</manifest>

main.xml :-

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent">


    <Button android:text="Start Download" android:id="@+id/button1"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
         android:layout_gravity="center_vertical|center_horizontal|center" android:textColor="#0000A0" 
         android:typeface="serif" android:onClick="onClick"></Button>

    <Button android:text="View Downloads" android:id="@+id/button2"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
         android:layout_gravity="center_vertical|center_horizontal|center" android:textColor="#0000A0" 
         android:typeface="serif" android:onClick="showDownload"></Button>

    <ImageView android:layout_height="wrap_content" android:id="@+id/imageView1"
        android:src="@drawable/icon" android:layout_width="wrap_content"></ImageView>

</LinearLayout>



답변

첫 번째 질문은

Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);

(API 8부터 사용 가능)

이 디렉토리의 개별 파일에 액세스하려면 File.list () 또는 File.listFiles ()를 사용하십시오 . 다운로드 진행률보고는 알림에서만 가능 합니다 . 여기를 참조 하십시오 .


답변

manifest.xml 파일에서이 권한을 설정해야합니다.

android.permission.WRITE_EXTERNAL_STORAGE


답변

업데이트 됨

getExternalStoragePublicDirectory()되어 사용되지 .

에서 다운로드 폴더를 가져 오려면 Fragment,

val downloadFolder = requireContext().getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS)

에서 Activity,

val downloadFolder = getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS)

downloadFolder.listFiles()Files 를 나열합니다 .

downloadFolder?.path 다운로드 폴더의 문자열 경로를 제공합니다.


답변

Marshmallow를 사용하는 경우 다음 중 하나를 수행해야합니다.

  1. 런타임시 권한 요청 (사용자가 요청을 허용하거나 거부 할 수 있음) 또는 :
  2. 사용자는 설정-> 앱-> {내 앱}-> 권한으로 이동 하여 스토리지 액세스 권한
    부여해야합니다 .

이는 Marshmallow에서 Google이 권한 작동 방식을 완전히 개선했기 때문입니다.


답변

다음 권한을 추가해야합니다.

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

그리고 다음은 코드에서의 사용법입니다.

val externalFilesDir = context.getExternalFilesDir(DIRECTORY_DOWNLOADS)


답변

셸을 사용하는 경우 다운로드 ( “s”없음) 폴더의 파일 경로는 다음과 같습니다.

/storage/emulated/0/Download


답변