Posts by Silas Ribeiro • 317 points
12 posts
-
1
votes1
answer67
viewsA: Dagger 2 does not generate components
Following the gk5885 response, updated Guava. In my case, I had to delete the guava-18.0.jar of the briefcase lib required by Kinvey for Dagger to automatically add the most compatible version.…
-
0
votes1
answer67
viewsQ: Dagger 2 does not generate components
Every time I try to give build in my project the following error occurs: Error:Execution failed for task ':app:compileDebugJavaWithJavac'. java.lang.NoSuchMethodError:…
-
3
votes0
answers100
viewsQ: Problem with the redirect
I am creating an application in Node.js using express admin to manage data. It ran great as locally, but when I put in apache server the redirect to login gives error. In case, when I went to…
-
0
votes1
answer575
viewsA: How to send Lists with Retrofit 2.0 via POST
I solved the problem by changing the list of List<Registro> by an array Registro []
-
1
votes1
answer575
viewsQ: How to send Lists with Retrofit 2.0 via POST
I have a list of records and need to send to the server via POST, use Retrofit 2.0 to make the requests. Be able to make all requests, but I’m not able to send the list. My interface: private…
-
0
votes1
answer150
viewsQ: How to use robolectric in Android Studio
Hello, I’d like to know how I use robolectric in my projects on Android Studio. I have tried several tutorials, but none was of great help and the documentation of it is not very clear.…
-
2
votes1
answer125
viewsQ: Error fetching video by location in Youtube Api V3
I wonder what the URL error is: https://developers.google.com/apis-explorer/#s/youtube/v3/youtube.search.list?…
-
7
votes4
answers723
viewsA: How to create a link that when clicked is added a CSS property in a div?
You can use the method .css() jquery An example you can use along with the answer to the other question would be: <a id="botao-chat" href="#">ABRIR CHAT</a> <div id="a">…
jqueryanswered Silas Ribeiro 317 -
0
votes1
answer170
viewsQ: Show View as slide
Hi, I would like to know how to make a View appear as slide on an android layout changing the size of your siblings, for example the information of a point in the Google Maps app that appears and…
-
1
votes1
answer679
viewsA: Importing content from a div of a website into my application
You can use the lib Jsoup for that. An example of yours would be: Mainactivity class TextView txv; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);…
-
3
votes2
answers446
viewsA: jQuery Mobile, what are your closest competitors?
When I was developing an app with Phonegap I had the same problem until I was advised not to use jQuery mobile, so I went to look for others frameworks. I found several, but what I liked most were…
-
0
votes2
answers71
viewsQ: Animation does not repeat in android api 8
Hi, I’m creating a simple app and I want to make a light stay flashing, so I added the following code: private void flashLight() { anim = animate(imgLight).setDuration(speeds[speed]);…