im a new programmer android and i want make an app that users can record the voice and send that then the voice save on my host. for example in Telegram app you can record voice and send that.what shall i do?
As you said that you are a beginner you have to do small projects like making calculator, small blog based app or i do not know parsing JSON , try google maps play with XMLs.
nobody will send you the source code of the app that you need it includes a lot of minor staff that you have to learn step by step..
Best regards.
Related
Beginner here.
I'm creating an app in Android Studio (Java) where the user can create and store PDFs on the app and send these to another account on the same app, on a different device.
The user will have a list of contacts stored in a database.
Do I need a server to do this? Are there any tutorials online showing one how to code this? (I've been searching for hours but can't find anything specific to my problem. Maybe I'm wording it wrong...)
I was looking into Firebase but I'm completely lost on where to start.
Thanks!
For simple use cases you don't need a server, you can use firebase instead. Currently, they have a storage feature that lets you store files on their servers and retrieve them later.
Here is the official documentation firebase cloud storage
One thing you could do is upload the file from android device and download from another one.
I want to create an android app that has a search box. When the user starts typing text, the app searches for matching text in all the telegram chats/group chats and creates jump links instead of going through chats one by one.
I was going through the telegram bot api but dont understand how to implement it in my android app. My IDE is Android studio. I came across the following api but don't understand the https url that I should be using
(messages.search#8614ef68 flags:# peer:InputPeer q:string from_id:flags.0?InputUser filter:MessagesFilter min_date:int max_date:int offset_id:int add_offset:int limit:int max_id:int min_id:int hash:int = messages.Messages;)
I just need to create jump links to be able to jump to that text in the chat in telegram. For example, if I search for "how are you?" then it should create jump links for all chats that contain this phrase.
1) First of all. Telegram bot, should nothing to do with your Android application. Bot is a backend service, which working with a particular chat. You need to create bot with Server with few simple actions to fetch all messages from all chats, where this bot is added.
2) Information above should be forward to my android app as you mentioned above. You need to create few requests on backend system to download it to the application.
3) Later in the Android app you can fetch it from your backend service and perform search. Filtered result could be added to list, and to jump to the chat you will implement Intent call to Telegram app.
Please note. As you can, it's not a simple task. Another point, your bot should be added to every chat, to do that.
I am intended to make an app that stream live videos from one android phone to other one via Bluetooth,i need a simple player and there is no need to save the file,just play it.
My knowledge about stream in java is not enough and I really don't know where to start!
Please help me in finding any solution. Any help will be appreciated.
There is a sample android project to do streaming live video and allows you take photos and record videos from remote phone via bluetooth.
BluetoothCameraAndroid
Android allows you to get frames as byte array using camera, you can use that api to get frames and send it across. But the problem is throttling the sending rate. That also has been handled in that project.
In marshmallow and above devices, you have to give permissions
manually in settings. This project does not include runtime
permissions
Xuggler is a Java opensource library that works with streaming and modifying media on the fly. you can start from it at:
http://www.xuggle.com/xuggler/
i have a wordpress blog hosted over my personal shared hosting.Now i want to develop an android app for that blog so the users can use the mobile app to see what i am writing on my blog.
Like for example you can take mashable.com android app.
so basically i have experience in programming android aap but i am just asking this so i can code it in a better way.
i have 3 idea to do this now:
1.Use rss feed of my blog and parse it and display the contents but it has a issue that rss only display most latest contents.So whether i need to store the feed contents timely on android device so a user can view the previous most content also.
But i think it's not a good idea because it will unnecessarily increase the size of database and make diff copies on every device.
2.Just simply use complete java code to pull data from my web mysql database as per the user request and just display it over the screen without storing it locally on android device.
3.Develop some sort of API solution on my web server then send the data in json or xml format so i can use it on my android device(via java) without bothering to connecting to mysql server as a core part because that part already done by on web server and my api already sending data in required format.
So these are 3 idea i have now.So please suggest me a better one form these three or you can give any other idea.
I am asking this question because previously i never programmed this sort of mobile aap where i need to pull the data from remote server.
-Thanks
You can simply install WordPress Mobile Pack to display Mobile site of your wordpress blog/site
Or
You can check this link to find out other plugins: 11 Ways to Create a Mobile Friendly WordPress Site
Now, If you want to create an app then you can simply implement it by using WebView.
I am a student developer working on a hands free texting solution for android. After much hard work, the app is finally complete and has been released on the market. However, the very first review I got from a user was a request for google voice integration.
Is there some way to integrate my app with voice? Is there a broadcast receiver or something that I could implement, and a way to send texts? After much googling, I an still unsure where to begin.
All that I need to be able to do is receive text messages from voice and then send out new ones in reply.
There is an unofficial Google Voice API for Java. There are also example apps.