Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
firstline1
titleCode Sample
linenumberstrue
collapsetrue
new AsyncTask<Void, Void, Void>() {
 @Override
      protected Void doInBackground(Void... params) {

        String result = getDeviceOsName();
		//Do what is needed with the returned result.. .
        return null;
      }
     }.execute();

...