I am working on an application like Olx where any user can list their items. So for that, I have a fragment to upload the photos of the item user wants to list on the application.
Now the problem is that when the user uploaded the photos to the firebase now I am confused how can I retrieve the same photos to the same user to show on the recycler view on the home screen??? please guide me on how can i achieve that.
Related
ı want to make a project that has a login page.In this login page , ı want to take a picture of user and save it automatically to photos app if they enter password two times wrong.Any ideas for it?
I looked how Camera API works but ı didn't get anything from it.
I am working on a android app that show the details of a book from server.
Now i have to add a new feature :- when user scans any image of the book from app. So open the details of the image in app
Is their is any way to store index in book image and fetch from app.
I did not find any possible solution of this problem if any one have idea how to done this. Please help me
I want to have my app's icon displayed in the Contacts Android native app, next to registered contacts phone number. Just like Whatsapp's icon is shown to allow direct messaging from the Contacts app. Do I need the contact list from the server? Thanks in advance.
You need to display your app icon in User's contact app if that number is register with your app .
So for that you need a SyncAdapter .
For detail Information about how it works . Please visit this link.
If you need any demo you can check SyncAdapter Example
I am making a chat app in which i am using RecyclerView to send images and messages, I am able to upload images in the Firebase and able to show them in RecyclerView when clicking send message button, but when i am sending the image message the image is showing in the RecyclerView after it gets uploaded because I am accessing it using a link which firebase providing the image after is gets uploaded. What i want is to show that image in the RecyclerView or i want to show a placeholder until the image gets uploaded. i am using picasso library but it is not showing placeholder until it gets uploaded. It would be great if i get progress dialogue just like whatsapp inside the image to show its progress.
I want to make an photo gallery app, so I want something like I upload pics to a webpage and it automatically gets displayed in that app.
I don't want to edit the coding for every single image and yess I don't want "WebView" all I want is a pure native android app, that gets data (images/audios/videos) from a webpage and display it in my native android app activity.
What you need to use is a grid view, you pass an array with the links to download the image and place them in each row.
Here is an [example] (http://www.tutorialspoint.com/android/android_grid_view.htm) of how to use it.
Hope it helps