jax
jax

Reputation: 38583

How should I name styles and Themes in Android

What is the convention for naming xml styles in Android.

I have seee things like

Widget.TextView.SpinnerItem 

and

Theme.Black

If I extend these in my own styles how should I name it?

Upvotes: 2

Views: 164

Answers (1)

Dev articles
Dev articles

Reputation: 11

The styles can follow the following convention X style parent of Y then you should write Y.X

see Android UI best practices I have found out so far

Upvotes: 1

Related Questions