Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Juan Santa Cruz
5,596 PointsNew Android look(Treehouse app)
Quick question I been noticing that the newer apps on the market have been having a 'new' layout look i.e the Treehouse app. Is this something new on the Android API, or are designers really digging into the layout xml?
For example the actionbar, menus, buttons have a more fluid look to them nothing like the stock android component look which makes it look very nice in my opinion but are there any tutorials that demonstrate how to achieve this new look?
Im sure some of you will notice this with new updates on the app store.
1 Answer

Henry Goh
20,201 PointsHi Juan,
There are other mobile development frameworks out there to make styling easier.
One example is Adobe PhoneGap where it utilises the devices WebView to render the layout and controls.
This means the whole app is written in pure HTML, CSS and Javascript.
Appcelerator has their own mobile development framework called Titanium.
It uses XML to structuring like HTML, TSS (Titanium Style Sheet, CSS like syntax) for styling and Javascript for the background logic.
Styling with the native toolkit can be quite difficult, for me, so these frameworks exists to make it more simple.
Hope this answers some of your question.
Best regards,
Henry