All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kt3k.straw.MessageBackThread Maven / Gradle / Ivy

The newest version!
package org.kt3k.straw;

import android.webkit.WebView;

class MessageBackThread implements Runnable {

	WebView webView;
	String message;

	public MessageBackThread(WebView webView, String message) {
		this.webView = webView;
		this.message = message;
	}

	public void run() {
		this.webView.loadUrl(this.message);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy