Tips and Tricks for December 2015:
- Hyphenation in Android TextView – In API 23, Google introduced hyphenation for TextViews. Hyphenation is the term used for breaking up of words when they can’t fit on one line. There is a whole bunch of technical stuff involved in it and it can differ between languages. To take advantage of hyphenation in android, add the following to your TextView:
- breakStrategy – simple, high_quality, balanced
- hyphenationFrequency – full, normal, none
- Color Picker – When declaring a colour in your layouts, you can click on the colour icon on the side of the layout xml file. A new feature that I have discovered is the option to select the “Closest material colour”. This is such an awesome feature as I am always looking up the material colours from the website:
- Plurals – Sometimes you want to use a string but it needs to be a plural based on the number of items that you provide it. Instead of creating different strings yourself and manually switching between them, take advantage of the built in mechanism:
<plurals name="how_many_oranges"> <item quantity="zero">No oranges found</item> <item quantity="one">%d orange</item> <item quantity="other">%d oranges</item> </plurals>
When using this string in your code, you would typically use it in the following way:
String oranges = getResources().getQuantityString(R.plurals.how_many_oranges, 3, 3);
See more about plurals here
- Digits – If you need an EditText to only accept certain characters, you can easily specify this in the layout. By using the android:digits field you can specify the characters that your EditText can accept. No additional code needed.
<EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:digits="1234mnp." android:id="@+id/editText"/>
- Great External Resources:
- materialdoc – demos of how to implement basic material things
- Advanced Android TextView – Youtube Video of Talk by Chiu-Ki Chan
- Refactoring Plaid App – Article by Hannes Dorfmann
- New Android Emulators – Faster, better emulators! Whoop!
What Android things have you discovered this month? Leave a comment below!
Happy Holidays to everyone!
Leave a Reply
You must be logged in to post a comment.