79765400

Date: 2025-09-15 16:40:59
Score: 2
Natty:
Report link

The problem was caused by String resource having new line /n character which was pushing "Tasks" label and icon upwards.

before:

<string name="tasks_nav_item_label">Tasks/n</string>

So I removed /n,

after:

<string name="tasks_nav_item_label">Tasks</string>

Works perfectly:

Screenshot of real device(phone)

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: CodingDevil