Posts by Y. Esteves • 9 points
4 posts
-
-1
votes2
answers169
viewsA: How to list the log of a local GIT repository through PHP?
This will depend on the company, for example Github is: The data below can be provided on : https://github.com/settings/applications <?php $user = 'flesheater'; $token = 'ced38b0e522a5c5e8ab10';…
-
0
votes1
answer84
viewsA: Insert a counter into Listview
You can take the listview position in onclick, and you can add the positions in an array based on its position.
-
1
votes1
answer37
viewsA: Online image in Adapter
I solved using this scheme: (In my Adapter) Bitmap bitmap = null; try { //.makeText(contexts, mag, Toast.LENGTH_SHORT).show(); bitmap = BitmapFactory.decodeStream((InputStream) new…
-
0
votes1
answer37
viewsQ: Online image in Adapter
I have an Adapter in my App, and I would like to take pictures of my server to put in it instead of a photo saved at the root, I’ve tried several ways, I’ve tried even using the Picasso API but the…