Android - IOS Sample Codes
This Blog includes many Working Example Codes for IOS and Android developers
Tuesday, March 17, 2015
Create Background Thread
new Thread(new Runnable() {
@Override
public void run() {
runOnUiThread(new Runnable() {
@Override
public void run() {
//Update Ui method
}
});
}
});
Newer Posts
Home
Subscribe to:
Comments (Atom)