Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Application Name getting truncated

My Application name is being truncated in some of mobiles is there any solution to show full name in all mobiles?

like image 791
Manju Avatar asked Nov 20 '12 13:11

Manju


2 Answers

you can split the name like "android\nAppliction" Define application name in String.xml and '\n' seperator used to split the application name

like image 142
Sanjeev Badoni Avatar answered Oct 11 '22 03:10

Sanjeev Badoni


Your application name is not truncated. The launcher that is installed on the mobile that displays your app decides of a reasonable length for a title to display. Each different launcher has different rules for that (based on the screen resolution, the user settings, etc.), so you're never fully in control.

  • It's not big deal to display a partial title: the user knows what he's downloaded
  • If you want to make sure everyone has a full name displayed, use a shorter name!
like image 23
Guillaume Avatar answered Oct 11 '22 03:10

Guillaume