Привет, так как я впервые в программировании 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 каждой ссылочной кнопки, я надеюсь, что вы можете помочь мне многими полезными советами или необходимыми изменениями, спасибо всем.