Since version 9, Java has new features every 6 months and it’s very hard to keep track of these new changes. If you’re thinking about migrating to a specific Java version is recommended to make a complete diff of APIs between selected Java versions.
Continue readingCoding
Computer Programming!
How to Build a RESTful Web Service with Spring Boot
Spring is one of the most widely used frameworks for developing enterprise applications, providing a robust programming and configuration model. This guide walks you through the process of creating a “Hello, World” RESTful web service with Spring Boot.
Continue readingAndroid Application Development – Settings Tutorial
Settings inside your app allow uses to modify features and behaviors. When application is relaunched certain information are still stored. Of course we can provide a default value for each settings voice.
To provide settings for your app, we can use Preference APIs to build an interface that’s consistent with the user experience in other Android apps.
In case you are asking if you need or not a voice to be inside settings page, this graph can help you decide:
Android Application Development – ListView Tutorial
There are different ways to implement a list of multiple line items on Android Apps. They can be used for data selection as well as drilldown navigation. ListView is a group that can display our scrollable items. Usually when the user click on a item, some action can be performed.
Our ListDemo will extend ListActivity and use an Android build-in list view, simple_list_item_1 layout. We will not care much in this part for performance or manage huge data, this will be covered on future post, so make sure you subscribe to our feeds. Our example will be an array with some data and make use of ArrayAdapeter(...)
.
Android Tutorial – How to Create Buttons with Listener
In this Android Tutorial series, we will have some fun creating Buttons with listeners. So when we click (touch) a button some message will display or an action will be executed. Make sure you already read the Android Activity part.
Continue reading
Android Tutorial – Create a new Activity
Creating views, bind data to lists, interact with user etc is task that an Activity have to take care. We will have a deeper look to this class. Before continuing you have to install Android Studio, used on this tutorial and create a DemoApp.
Speed Up Android Virtual Device AVD
An Android Virtual Device (AVD) is an emulator configuration that lets you model an actual device by defining hardware and software options to be emulated by the Android Emulator. In case that we don’t want to test every time our App on a smartphone, we have to create a new AVD. Sometimes this virtual device is really slow, and if you are running on a Intel machine, here is a trick how to make it faster.