I wrote a network package for socket i/o which uses normal java threads, and I'm wondering if it is possible to use this package? I'm not manipulating anything on the UI of the Activity with these threads.
Or do I have to port those java threads to Android compatible ones? Because I always thought you can use normal java threads as long as they don't change views on the Activity.
How do you post code samples?
Got connecting working now testing if the Message Queues are working. Im using 2 LinkedBlockingQueue Input and Output. Reason why i need to use Threads. Now i just converted the Class that i use to encapsulate connection and SocketIO to a AsyncTask. This is for a school project where we need to control a vehicle over wifi with a Android app.