# \[Android\] Can I get the current URL address of 'WEB APP'?

**URL:** https://discourse.processing.org/t/android-can-i-get-the-current-url-address-of-web-app/44578
**Category:** Processing for Android
**Created:** [June 11, 2024, 7:49am UTC](https://discourse.processing.org/t/android-can-i-get-the-current-url-address-of-web-app/44578 "2024-06-11T07:49:22Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![GWAK](https://avatars.discourse-cdn.com/v4/letter/g/13edae/32.png) [@GWAK](https://discourse.processing.org/u/GWAK)
#### Post date: [June 11, 2024, 7:49am UTC](https://discourse.processing.org/t/android-can-i-get-the-current-url-address-of-web-app/44578/1 "2024-06-11T07:49:22Z")

</div>

[Android] Can I get the current URL address of ‘WEB APP’?

hello.

WEB APP reference link: [Android-java-code-utilities-widgets-for-Processing-for-Android/WebView at master · EmmanuelPil/Android-java-code-utilities-widgets-for-Processing-for-Android · GitHub](https://github.com/EmmanuelPil/Android-java-code-utilities-widgets-for-Processing-for-Android/blob/master/WebView)

 ![figs1](https://canada1.discourse-cdn.com/flex036/uploads/processingfoundation1/original/3X/4/5/4508e50abdb41e4e74b0b281fab52df39b375354.jpeg)

As you can see in the picture, it operates as a WEB page after startup in the initial settings.  
It operates as a ‘WEB page’. Can I know the current ‘URL address’?  
If you know the URL address, you can tell which stage the user is at.

---

<div class="post-metadata">

### Author: ![GWAK](https://avatars.discourse-cdn.com/v4/letter/g/13edae/32.png) [@GWAK](https://discourse.processing.org/u/GWAK)
#### Post date: [June 11, 2024, 8:14am UTC](https://discourse.processing.org/t/android-can-i-get-the-current-url-address-of-web-app/44578/2 "2024-06-11T08:14:57Z")

</div>

```auto
   String aas = "";
   act.runOnUiThread(new Runnable() {public void run() {               
     aas = webview.getUrl();    
   }});

```
