implementation 'com.android.support:support-core-utils:<version>'
HandlerThread handlerThread = new HandlerThread("MyHandlerThread");
handlerThread.start();
Handler handler = new Handler(handlerThread.getLooper()) {
@Override
public void handleMessage(Message msg) {
}
};
handler.sendEmptyMessage(0);
String str = "Hello, World!";