Android Studio 1.4 Goes Vector
Written by Mike James   
Thursday, 01 October 2015

Decimal point upgrades are generally not game changing, but there is a new feature in Android Studio 1.4 - vector assets. What's this all about? 

androiddevicon

In a sense vector assets are the most logical way to deal with Android's (indeed the entire mobile world's) major problem - the number of different screen resolutions and pixel densities we have to support.

The current solution is to create bitmaps at different resolutions for each screen type you support and, if you don't provide a suitable graphic, the system will scale what you have supplied either up or down to fit. The problem is that you either have a difficult task providing your graphics in so many different resolutions or you put up with the fact that sometimes your app wont look its best. 

 

androidstudio14

 

Vector assets, on the other hand, are resolution-independent.

The idea is that vector asset is a program that draws your graphic at whatever resolution the current system supports.

Android 1.4 makes it much easier to use vector drawables to create resolution-independent graphics. It only works properly from API 21, Lollipop, but there is a backward compatibility option that will automatically generate all of the bitmaps needed to support previous versions.

So if you use vector assets you get the best of all worlds in that when possible the vector asset will be used and where it isn't you still don't have to worry about generating lots of bitmaps. 

 

androidstudio142

 

You can use predefined vector drawables in the icon library or you can import SVG graphics - use Inkscape to create them, but keep them simple. A basic editor is provided for simple customization.  Watch the video to see how it works:

 

 

As well as vector assets there are two other big improvements.

First, there is a new theme editor. As the Developer blog says:

"We understand that managing your app theme and style can be a bit complex."

An understatement if ever there was one. Most programmers either ignore themes or get bogged down very quickly trying to do battle with them. Now things are a little simpler in that we have a Theme Editor. At the moment it is only a start in that you can edit the color scheme and nothing else. A more advanced version is promised in future releases. 

Secondly, the project templates have been extended to the Android Design Support Library and the AppCompat Support Library. 

As you might expect there is also support for the two new devices that Google announced recently, the Nexus 5X and 6P.

Finally two new monitors have been added to the existing set - GPU and Network - and it is easier to add a Firebase cloud backend to your project. 

androiddevicon

Banner


Visual Studio 17.9 Now Generally Available
18/03/2024

Visual Studio 17.9 is now fully available with AI assistance and better extensibility. The first preview of 17.10 has also been made available in preview.



Pi Day - The Great Unanswered Questions
14/03/2024

It's Pi day again, again, again... Even after so many, I still have things to say about this most intriguing number. The most important things about Pi is that it is irrational and one of the few tran [ ... ]


More News

 

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

 

Last Updated ( Thursday, 01 October 2015 )