Posts by AπD • 104 points
8 posts
-
0
votes2
answers127
viewsQ: Click button performs an action second click on the same button performs different action
I need to know how a first click on the button performs an action, a second click on the same button performs a different action Would that be possible? I tried to: But it didn’t work out so well.…
-
0
votes1
answer139
viewsQ: Capture Webview image and display in Imagebutton
I need to capture a screenshot webView.capturePicture click button and display in a ImageButton, how to do this?
-
0
votes1
answer535
viewsQ: Edittext selected at start Activity
I have an Edittext and always when starting the APP it is "selected" it disturbs me a little (with the pointer) how to solve it ?
-
2
votes1
answer77
viewsQ: If string starts with "www" automatically insert "https://"
Here’s what I’m trying to do So the user doesn’t need to type https:// I’m trying to make sure that when the text of EditText start with www. will automatically insert the https:// I tried to: if…
-
0
votes1
answer431
viewsQ: Edittext with Webview URL when the page starts loading
Not much to say. I need that when loading the page the page link was started by clicking on WebView go to the EditText ,that is to say : editText_url.setText(myWebView.getUrl()); I only know how to…
-
3
votes1
answer2978
viewsA: Customize Android Progressbar
I can’t explain to you how to do more I’ll show this example that I use: <ProgressBar style="@android:style/Widget.DeviceDefault.Light.ProgressBar.Horizontal" android:layout_width="match_parent"…
-
0
votes2
answers1640
viewsA: Add progressbar to my webview
I wore it like this, I don’t know if it’ll work! final ProgressBar Pbar; Pbar = (ProgressBar) findViewById(R.id.progressBar); myWebView.setWebChromeClient(new WebChromeClient() { public void…
-
3
votes1
answer1438
viewsQ: Enable Webview Downloads
Hello I’m developing an app with WebView and I realized that it is not possible to download files from the web. I tried to download a Dropbox file, It is possible that before downloading the file an…