#android #api
Вопрос:
Всем привет, я новичок в разработке Android, и я пытался создать приложение, которое вызывает api, который возвращает некоторый URL-адрес, а затем использует этот URL-адрес для загрузки видео, которое находится в этом URL-адресе. Но после того , как я закончил, я не могу загрузить его, и я понял, что моему api требуется некоторое время, чтобы вернуть ответ, но приложение не ждет так долго, так как я могу ждать, пока залп не вернет ответ, вот код:-
package com.example.youtubehub;
import android.app.DownloadManager;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import androidx.appcompat.app.AppCompatActivity;
import com.android.volley.Request;
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.JsonObjectRequest;
import com.android.volley.toolbox.Volley;
import org.json.JSONException;
import org.json.JSONObject;
import java.net.CookieManager;
public class Download_Page extends AppCompatActivity {
Button download_button;
EditText editText;
String full_url, receive_url,title;
full_url = "https://example.herokuapp.com/url/?url=" editText.getText().toString();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_download_page);
editText = findViewById(R.id.url);
download_button = findViewById(R.id.download_button_1);
RequestQueue requestQueue;
requestQueue = Volley.newRequestQueue(this);
JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(Request.Method.GET, full_url, null, new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
receive_url = response.getString("Video Source");
title = response.getString("Title");
} catch (JSONException e) {
Toast.makeText(getApplicationContext(), "Something went wrong", Toast.LENGTH_LONG).show();
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Log.d("myapp", "Something went wrong");
}
});
requestQueue.add(jsonObjectRequest);
download_button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(editText.getText().toString().isEmpty()) {
Toast.makeText(getApplicationContext(), "Please enter an url first", Toast.LENGTH_LONG).show();
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(full_url));
request.setTitle(title);
request.setDescription("Downloading");
String cookie = android.webkit.CookieManager.getInstance().getCookie(full_url);
request.addRequestHeader("cookie",cookie);
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS,title);
DownloadManager downloadManager =(DownloadManager)getSystemService(DOWNLOAD_SERVICE);
downloadManager.enqueue(request);
Toast.makeText(Download_Page.this,"download will start Shortly",Toast.LENGTH_LONG).show();
}
else {
Toast.makeText(getApplicationContext(), "somethung went wrong", Toast.LENGTH_LONG).show();
}
}
});
}}