Answers for "java android studio is it ok to have multiple run methods"

1

how to run a background thread in android

Thread thread = new Thread() {
  @Override
  public void run() {
      try { Thread.sleep(2000); }
      catch (InterruptedException e) {}

      runOnUiThread(new Runnable() {
          @Override
          public void run() {
              textView.setText("OK");
          }
      });
  }
};
thread.start();
Posted by: Guest on August-11-2020
0

thread example in android

//if your project supports java8, you can implement with lambda function
new Thread(() -> {
        // do background stuff here
        runOnUiThread(()->{
            // OnPostExecute stuff here
        });
    }).start();
Posted by: Guest on January-02-2021

Code answers related to "java android studio is it ok to have multiple run methods"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language