All Questions
51 questions
0
votes
0
answers
18
views
How can I send ImgUrl to Twitter(X)?
enter image description hereThis only shows Url. But I want to show Img too.
dialog_news_twitter.setOnClickListener(new View.OnClickListener() {
@Override
public void ...
0
votes
1
answer
85
views
I am getting an error while uploading image URL to firebase database from the firebase storage
I got this in firebase:
private fun uploadToFireBase(imageUri: Uri) {
binding.progressBar.visibility = View.VISIBLE
val fileRef : StorageReference = storageReference.child("${System....
0
votes
1
answer
44
views
(others too)picasso is not working with simple image display using URL
dependency=implementation "com.squareup.picasso:picasso:2.4.0"
String url1="https://www.google.com/search?
ImageView image;
@Override
protected void onCreate(Bundle ...
1
vote
0
answers
336
views
App crashed when using setImageURI function in ImageView
I am opening the gallery and getting the URI of an image when it is selected. Then I show the picture using setImageURI like this.
override fun onActivityResult(requestCode: Int, resultCode: Int, data:...
0
votes
0
answers
534
views
Download Image from URI And Store it in the Folder
I'm getting a list from the service side with 10 image Uris. I was showing all those images in the Fragment Pages using Glide Library, but glide is taking time to load the image and show it in the UI. ...
2
votes
0
answers
42
views
Store image url to database using retrofit
Is it possible to send a url in android to database using retrofit post request @Body method?
I am trying to build an app that will upload multiple images to amazon s3 and after will get the image url ...
-3
votes
1
answer
45
views
Exiting App causes the image taken from gallery to go
I am able to pull down images from my gallery and add them to image view but when I exit app and open it again image is gone. How do I save this image so that it stays there. Open gallery method:
...
0
votes
1
answer
100
views
I am not able to load my image via taskSnapshot.getStorage().getDownloadUrl().toString() method please tell me if any suggestions for this [duplicate]
many suggestions tried but taskSnapshot.getStorage().getDownloadUrl().toString() this is not working. in the firebase the another url is stored despite the download url. the whole 2 related java files ...
0
votes
1
answer
607
views
Image compression in bitmap and uploading to server in android Q
i am trying to upload an image to one of the server but the server side has certain resolution limitations.Hence we are compressing the image file using bitmap before the upload.
Below is the code ...
0
votes
1
answer
672
views
Setting the imageUrl for a VideoView in the XML layout file on Android
I have an application that downloads JSON input from a web site that returns a URI to a picture or a video. I had no problem to get my MaterialCardView to display the pictures via an ImageView. My ...
-1
votes
1
answer
1k
views
Image URL to File Object
I'm trying to convert this image url to file object :
https://graph.facebook.com/v4.0/10211842143528384/picture?height=200&width=200&migration_overrides=%7Boctober_2012%3Atrue%7D
this link ...
0
votes
1
answer
135
views
Cannot get the image url in java
I need to get the image URL after I uploaded it to firebase storage. After that, the image URL will be added to my firebase database together with other user data. However, the link keeps perceived as ...
0
votes
2
answers
4k
views
How to retrieve image from URL from Firebase Realtime Database in Android Studio
I am trying to extract URL named "imageUrl" so as to retrieve the image from the URL from Firebase Realtime Database as seen below:
This is DB structure in Firebase Realtime Database:
enter image ...
1
vote
1
answer
95
views
All images from url stopped loading after Android Studio 3.3.1
I updated Android Studio 3.3.1 and
classpath 'com.android.tools.build:gradle:3.3.1'
In the next app run, ALL images that loading from url stopped showing.
I checked website :OK
I checked another ...
1
vote
3
answers
2k
views
How to fetch image URL from Fresco's SimpleDraweeView?
Get Image URL from Fresco SimpleDraweeView.
I have recyclerView items with EditText and SimpleDraweeView, also have on the button on my activity. on button click, I want to get whole recyclerview ...