Home | History | Annotate | Download | only in browser

Lines Matching refs:URL

35 import java.net.URL;
54 public WallpaperHandler(Context context, String url) {
56 mUrl = url;
180 * Opens the input stream for the URL that the class should
183 * @return An open InputStream for the data at the URL
184 * @throws IOException if there is an error opening the URL stream
185 * @throws MalformedURLException if the URL is malformed
193 URL url = new URL(mUrl);
194 inputStream = url.openStream();