Why onCreate() calling multiple times when i use Thread()?
- by RajaReddy PolamReddy
In my app i faced a problem with threads. i am using native code in my app. i try to load library and then calling native functions from the android code.
1. By using Threads() :
PjsuaThread pjsuaThread = new PjsuaThread();
pjsuaThread.start();
thread code
class PjsuaThread extends Thread {
public void run() {
if…