|
You are here |
staydecent.ca | ||
| | | | |
blog.iamsuleiman.com
|
|
| | | | | Android Bottom Bar (Bottom Navigation View) was officially added in Design Support Library v25. It is a recent addition to Material Design guidelines. | |
| | | | |
arpitonline.com
|
|
| | | | | In my previous post, I had written a bit about creating custom Layouts for Android. However to make a truly reusable layout there are a few more things we'd probably need: Some unique properties that you may want to assign to it via XML (Like LinearLayout has an orientation property unique to it) Custom LayoutParams... | |
| | | | |
ryanharter.com
|
|
| | | | | On a recent client app, I ran into a situation where I needed an arbitrary number of EditText fields based on a selected value, where the user could enter people's information. My initial thought was to put this logic in my Fragment, just adding EditTexts to a LinearLayout container as the selected value changes, but that bloated my Fragment, and didn't allow for much reuse. This was a perfect opportunity to encapsulate this interaction functionality in a custom view, which would be reusable throughout t... | |
| | | | |
fusectore.dev
|
|
| | | This is the first part in a series of articles on dependency injection for the play framework using guice. As soon as Ive written the next part, it will be linked here. Please note that while the examples are written in Scala, the principles apply for Java likewise. Furthermore, please be aware that Guice is not the only framework to do dependency injection with. It is probably the most prominent one in the play ecosystem though. Guice does so called runtime dependency injection. This means dependencies ... | ||