-1

According to Android Design Guideline! , the static information shouldn't be included in settings. So where should I put up all these information like about me,terms and conditions,version etc.

isudansh
  • 370
  • 3
  • 16

1 Answers1

2

The answer is within your link in the text in the first image.

If it's static information about the app (e.g. version number, terms of service), organize it within a Help screen.

Simulant
  • 19,190
  • 8
  • 63
  • 98
  • is the help screen just another activity? Do you have any links on tutorial for writing help? – isudansh Jan 10 '14 at 09:38
  • the Help screen is a new Screen like the settings Screen, but only showing information with no options to click on. This can be implemented as a new `Activity` or as a `Fragment` as Fragments should replace additional Activities. – Simulant Jan 10 '14 at 09:41