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 want to route audio from an Android app I am developing to a PC via a standard USB cable. I have found some sources discussing native USB Audio support in Android Lollipop, but am unable to find any documentation or example code online.
Is this possible? Preferably, Windows should recognize the device as a standard microphone without the need for any extra drivers or software.
Thanks!
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 8 years ago.
Improve this question
How to take pictures through the camera of an android device that is connected to a PC via USB using PYTHON code running on PC ?
Android uses Java for applications, but I am unsure what the APIs are available for the OS.
Offhand I would give this a try: http://python-for-android.readthedocs.org/en/latest/android/
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 4 years ago.
Improve this question
I am developing an android application that enables user to transfer files from an android device to PC.
How can i transfer selected files/apps to a connected PC?
You can just use a socket connection. your pc would be your server and the android app would be your client. This way you can send data from your mobile device to your pc.
for example you can refer below link
http://www.javaworld.com/article/2077322/core-java/sockets-programming-in-java-a-tutorial.html
this is basically written in java but similarly you can write it in android.
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 writing an app to allow two android devices to play together. I'd like to know can I make a p2p connection with wifi between the two android devices without a third devices?
As long as you can target API level 14 and above you should be using the built in Wifi direct API's. Google has posted a very detailed guide on how to get WifiP2P working on Android.
Start from Device A - "Tethering and portable hotspot"
Connect Device B to created hotspot
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I would like to ask what studies are needed for me turn my smartphone into a wireless keyboard and use for desktop/laptop/etc...? How could I achieve this step by step? Thanks a lot for helping.
You would require an app which has a keyboard layout (or just use the android softkey) and send the key press code to a computer via Bluetooth.
You computer should have an interface software that can receive you incoming keystroke signal and convert that into the OS signal.
Actually there is an app in the market which has the same functionality
https://play.google.com/store/apps/details?id=com.iandrobot.andromouse.lite&hl=en
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
Android has Mouse support and I wonder if I can control a "virtual mouse" via service/app. I did a lot of research but I do not think the sdk provides anything I can use for obvious security reasons.
I wonder if anyone could give me a hint how to achieve this with root permission.
If android phones can run a VNC server this should be possible too shouldn't it?
I want to send the movement of a computer mouse to the phone. A cursor should be shown like if you connect a bluetooth mouse.
Thank you