Загрузите образ из Firebase Storage, зная ссылку - PullRequest
0 голосов
/ 28 мая 2020

Привет, так как я впервые в программировании android, мне понадобится большая помощь для решения этой проблемы, затем я создаю приложение для изображений, изображения загружаются мной в хранилище Firebase, и поэтому я могу получить доступ к ссылке и токенам в любое время Я хочу, чтобы, когда пользователь выбирает изображение, он загружает то, которое он выбрал, теперь я разделил свое приложение, поэтому я создал столько фрагментов, сколько есть изображений, и кнопка загрузки содержится во фрагменте, относящемся к изображению, которое я сейчас показываю вы как

import android.os.Bundle;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;

    public class fragment_1 extends Fragment {
    Button bntDwn_1;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.fragment_1, container, false);
    }

    @Override
    public void onActivityCreated(@Nullable Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);

        bntDwn_1 = (Button) getActivity().findViewById(R.id.dwn_1);
        bntDwn_1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //here I would like to insert the function to download the image directly

            }
        });
    }
}

сейчас я покажу вам макет фрагмента

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".fragment_1">

    <ImageView
        android:id="@+id/sfondo_1"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:contentDescription="@string/sfondo_1"
        android:src="@drawable/forpaper_1"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="1.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.0" />

    <Button
        android:id="@+id/dwn_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="4dp"
        android:text="@string/scarica"
        app:layout_constraintBottom_toBottomOf="@+id/sfondo_1"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="1.0" />

</androidx.constraintlayout.widget.ConstraintLayout>

сейчас я покажу вам MainActivity

import androidx.appcompat.app.AppCompatActivity;
import androidx.fragment.app.FragmentManager;
import androidx.fragment.app.FragmentTransaction;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import com.google.firebase.storage.FirebaseStorage;
import com.google.firebase.storage.StorageReference;
import java.util.Random;

public class MainActivity extends AppCompatActivity {

    private StorageReference mStorageRef;
    public Random mRandom;
    public TextView mCounterCrd;

    int StringCrd;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        //Inizializzazione Archiviazione Cloud
        mStorageRef = FirebaseStorage.getInstance().getReference();


        FragmentManager fm = getSupportFragmentManager();
        FragmentTransaction tx =  fm.beginTransaction();
        fragment_1 fragmentview = new fragment_1();
        tx.replace(R.id.frame_place, fragmentview);
        tx.commit();
       }
    }

теперь я хотел бы спросить вас функция для загрузки файла, уже зная ссылку, а затем вручную вставляя его для каждого изображения под функцией onClick каждой ссылочной кнопки, я надеюсь, что вы можете помочь мне многими полезными советами или необходимыми изменениями, спасибо всем.

1 Ответ

1 голос
/ 30 мая 2020

ребята, я решил это так:

import android.app.DownloadManager;
import android.content.Context;
import android.net.Uri;
import android.os.Bundle;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import com.google.android.gms.tasks.OnFailureListener;
import com.google.android.gms.tasks.OnSuccessListener;
import com.google.firebase.storage.FirebaseStorage;
import com.google.firebase.storage.StorageReference;

public class fragment_1 extends Fragment {

    private static final String DIRECTORY_DOWNLOADS = "CAMERA";
    Button bntDwn_1;
    FirebaseStorage firebaseStorage;
    StorageReference storageReference;
    StorageReference ref;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.fragment_1, container, false);
    }

    @Override
    public void onActivityCreated(@Nullable Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);

        bntDwn_1 = (Button) getActivity().findViewById(R.id.dwn_1);
        bntDwn_1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Log.d("fragment_1","Click su scarica fragment 1");
                download();
            }
        });
    }

    public void download(){
        storageReference= firebaseStorage.getInstance().getReference();
        ref = storageReference.child("fourapper_forpaper_1 (1).jpeg");
        ref.getDownloadUrl().addOnSuccessListener(new OnSuccessListener<Uri>() {
            @Override
            public void onSuccess(Uri uri) {
                String url = uri.toString();
                downloadFiles(getActivity(), "Sfondo", ".jpeg",DIRECTORY_DOWNLOADS,url);

            }
        }).addOnFailureListener(new OnFailureListener() {
            @Override
            public void onFailure(@NonNull Exception e) {
            }
        });
    }

    private void downloadFiles(Context context, String fileName, String fileExtension, String destinationDirectory, String Url){
        DownloadManager downloadManager = (DownloadManager)context.getSystemService(Context.DOWNLOAD_SERVICE);
        Uri uri = Uri.parse(Url);
        DownloadManager.Request request = new DownloadManager.Request(uri);
        request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
        request.setDestinationInExternalFilesDir(context, destinationDirectory, fileName +fileExtension);
        downloadManager.enqueue(request);
    }
}

все работает отлично, скачайте требуемый файл, только он сохраняет все в загрузках, а я хотел бы загрузить фотографии в точную папку внутри фотографий устройства, чтобы его было легко найти, так как же мне сохранить загруженный файл по указанному мной пути и именно в галерее изображений? спасибо вам всем

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...