Explore >> Select a destination


You are here

jakewharton.github.io
| | benoitpasquier.com
1.4 parsecs away

Travel
| | Inmy current role at Qudini, I started as an iOS developer. My main task was tocreate and improve our mobile productsfor iOS devices based on what was already done onAndroid. However I wanted to be more efficient in my job and I thought it could be by impacting more usersthrough Android development. Once our iOS apps were at the same level as the Android one, Ipush the idea thatit would be better Istart doing Android too. Here is my feedback after 6 months developing on Android.
| | juffalow.com
1.7 parsecs away

Travel
| | I am working for a Start Up project - DiagramArt, where we needed to create Android application which : load list of diagrams from API, show these diagrams to the user and some other stuff of course. The list consists from a preview picture, diagram's title and its description. There is no problem to load and show these data, the problem was in the preview picture.
| | wittchen.io
1.9 parsecs away

Travel
| | When we work with Activities in Android, defining different layouts for different screen orientations is easy. The only thing we need to do, is to create two *.xml files with the same name for layouts in two separate directories (res/layout/ and res/layout-land/). In Fragments its not that easy. In such case, we need to perform additional operations in order to achieve our goal. Fragment in Android is not re-inflated on configuration change, but we can recreate layout and repopulate view manually.
| | andreabergia.com
18.0 parsecs away

Travel
| In this short series, we are going to dig a bit in how one writes a gradle plugin. Our plugins won't do anything useful except some println; however I hope to manage to explain some concept and to save you some time in case you have to write one. The source code for this tutorial is available on github at https://github.com/andreabergia/sample-gradle-plugin. Our first plugin Link to heading The repository is split in two projects: gradleplugin and usage. Quite obviously, gradleplugin defines our plugin, ...