Links in Webview followed by dots
Links in Webview followed by dots
After links which are too long, I am getting ...
for e.g. https://en.wikipedia.org/List_...
how do i get the full link?
here is my code
wv_result_display.setWebViewClient(new MyBrowser());
wv_result_display.getSettings().setLoadsImagesAutomatically(true);
wv_result_display.getSettings().setJavaScriptEnabled(true);
wv_result_display.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
wv_result_display.loadUrl("https://www.google.com/searchq="+tv_query.getText().toString());
Here is my output
Here is my layout file
<WebView
android:id="@+id/wv_result_of_search"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.5">
I guess it's not possible from our side. It depends on the website loaded. If it is mobile responsive / optimized then it will only load the mobile version of the website.
– Saikrishna Rajaraman
Jul 1 at 15:26
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Please send the layout file
– Raj
Jul 1 at 7:23