Question

I'm coming from a web development background. I'n order to change the look and feel of the app I simply apply a new css to get the look and feel.

How can I do this in android?

The only think I can see is stencils? But I don't quite understand stencils?

Can I simply get hold of some file(s)/images and add it to the resources a suddenly my app looks stunning?

I'm really confused on how to do this?

Was it helpful?

Solution

The CSS equivalent in Android are Styles and Themes. You can then apply a style of any of your components (i.e., have all your TextViews have a particular look). You may consider looking at the output of the Android Asset Studio (particularly the Android Action Bar Style Generator and the Android Holo Colors Generator tools) as examples of styles and themes.

OTHER TIPS

All layouts in android are made in xml files under the res/layoutfolders, but it's not as simple as changing a css files. All these xml files are connected to Java classes, where there may also be some layout changes.

You can edit colors and themes quite easily but you need some experience in native android development if you want to know what you're doing.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top