Explore >> Select a destination


You are here

blog.iamsuleiman.com
| | wittchen.io
11.4 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.
| | adityarohilla.com
8.0 parsecs away

Travel
| | Hey people! In this tutorial, we'll develop a basic Audio capturing android application. This tutorial is the second part of the series in which we develop basic Android applications. You can find the previous article on Screen mirroring here: Screen mirroring android app Let's start developing our recorder app. The most common way to do...
| | ryanharter.com
10.5 parsecs away

Travel
| | In the last post we created a basic Android project using Android Studio templates. While it's great that we have a fully functioning master/detail style app, it does look a bit bare. In this post, we'll change this by styling our list view, incorporating (sort of) real data to feed our list. We'll make a custom adapter to drive our list with custom layouts, and introduce testing into the mix to ensure that our app continues to perform as expected.
| | blog.martinig.ch
81.1 parsecs away

Travel
| Architecture is an important asset for good programming and the notion of "pattern" is here to help us apply already trusted code architecture solutions to common problems. Jason McDonald has done a wonderful job to group some of them in a document that should be useful to most software developers. Go to his blog to