Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
How can I fill a RecyclerView in Xamarin Android with a SQL Server database that has images and information about the images?
Or if not a SQL Server database but with an API.
Could you please share some tutorial doing this? I can't find anything that is not local (using drawable folder images).
I'm looking a result like this (image):
So, once again, the problem with this result is that is made with a local-drawable folder-images list, and I need to feed the RecyclerView with an API that has the exact same information and images.
Step 1: First you should create WEB API Interface in SQL server into Mobile Application.
Step 2: After that WEP API creation you need to config in Xamarin Android Project.
Here given below link, i have explained step by step implementation Recyclerview
https://xmonkeys360.com/2018/01/24/create-android-recyclerview-using-material-design/
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Can we Use phpmyadmin and Firestore in a same Android App ?? Assuming if one part of the App contain a realtime feature (Chatting App),for which Database is Firestore And other part contain simple user features like viewing the stored data in Database(eg. Wikipedia),lets say it's DB is PhpMyadmin. will it be posssible ?
Yes you can. I did that recently in a project. Firebase is very easy just check the documentation.
You can actually use Firebase for everything. including storing and retrieving data. but, if you want to use another online DB, Web server or API that's totally doable.
I would recommend that you do a separate demo project using firebase and another Retrofit for example.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I am making an app in a college project. I am using firebase for the first time for authentication. What is the best way of storing images for users profiles?
When the are on their profile page I want them to be able to add a picture (like whatsapp for example) but I'm unsure how this works with firebase
Thanks for any help in advance
Firebase have a Cloud Storage too.
If you need to save a profile pic, you can add an image on firebase cloud storage and save image URL in your real-time database.
In this way, when you load user profiles you can retrieve information and load image by URL (you can use Picasso library to make it easy)
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I'm creating a website with an according app for iOS/Android and I'm doing some research for how I should do everything. I need to be able to post data from the different platforms and I want to access the same data from every platform, kind of like a wall where ypu can write stuff. I'm thinking that the data needs to be stored in a database but how do I access i.e. an SQL database from iOS/Android?
A simple research would've brought you a great tutorial on how to link a MySQL database through PHP to an Android app.
You'll be required the basics of PHP though so you may want to study a bit about that prior to starting.
Take a look at parse.com. This likely provides what you need without having to set up server with a database, etc. You can access your data on parse.com from iOS, Android, your web site, and a number of other platforms should you need to.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I am using this application: https://code.google.com/p/androidtutorial/ as part of learning to develop Android apps. I am totally new to this. In Eclipse I look through the source code, but I don't see the actual employee list (i.e. the file with the names/numbers etc). I'm guessing either I am looking in the wrong place or it links to a list held online or something? I'm sure it's obvious to anyone who understands these things, but I want to understand where the information is and where in the code this database/list is referenced.
Thanks
The list they are referring to is a local database on a computer, meaning you probably don't have it. It is just an example to show how to interact with a database.
I'm not familiar with that example project but I think the sql.xml file that is inside of EmployeeDirectory6/res/raw/ is where the data is coming from.
There is some code inside of DatabaseHelper.java that executes the SQL commands that are contained within this file to populate the database.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am trying to build an online application for movie management. I want the application to be an online one, could any have inputs as to how to build it, as in currently i am downloading each of the dynamic content and loading the layouts which is highly inefficient. Could anyone suggest a better procedure to make an online application and guide for the same.
https://developers.google.com/eclipse/docs/endpoints-androidconnected-gae
That link will show you how to make a Google app engine project. The easiest way to use an online database with android. You can post, and get with very little code. What you do with the data you get back is up to you... Throw it into list views, text views, fragments, etc. But yes this is the best place to start as you need an online database or a social network would not work at all. I suggest you do the above totural and then come back with some more questions. Hope this helps!