Posts by Marcelo López • 129 points
7 posts
-
0
votes1
answer402
viewsQ: Request application/x-www-form-urlencoded using Volley
Good morning guys, I’m trying to make an integration with web_services of a partner, by php everything worked correctly now I want to implement directly on Android using Volley but I’m getting…
-
0
votes1
answer448
viewsA: Download files to Webview on android 6.0
I think your problem is that from API 23 the permissions should be checked before the action happens, not just put in the manifest.xml. This function can help you: public boolean…
androidanswered Marcelo López 129 -
5
votes2
answers459
viewsA: Edittext without Focus by Activity
Hello, see if any of the methods below help you. edittext.setFocusableInTouchMode(boolean) edittext.setFocusable(boolean) After you finish loading you enable again (you can use the…
-
1
votes2
answers33
viewsQ: Event listening in a lib
I’m building a lib but at the end of the process that it performs I need you to let me know that it’s over, how can I implement it? any ideas? In the project that uses the lib do so: Lib lib= new…
-
0
votes3
answers2658
viewsA: Knowing that a button has been clicked
I would declare Edittext as global and in the click event I would do so: btnRegistrar = (Button)findViewById(R.id.email_registrar_button); btnRegistrar.setOnClickListener(new OnClickListener() {…
androidanswered Marcelo López 129 -
1
votes1
answer143
viewsQ: Connect server to local network by hostname
I am trying to connect to a local network server using the hostname (can not use IP because the client network does not allow to put fixed ip and the equipment does not have IP reservation for MAC).…
-
2
votes1
answer58
viewsQ: Auto Scroll for Specific View
I have a Scrollview with several elements inside, Linearlayout, Images, Textviews etc. In the header, above the scrollview I have some buttons, in the Onclicklistener of one of them I want to make…
androidasked Marcelo López 129