InterviewSolution
Saved Bookmarks
| 1. |
Which of the following units is recommended forspecifying font sizes in android program ?(a) dp (b) pt(c) sp (d) px |
|
Answer» sp - scalable PIXELS - this is like the dp UNIT, but it is also scaled by the user's font SIZE preference. It is RECOMMENDED that you use this unit when specifying font SIZES, so they will be adjusted for both the screen density and user's preference. |
|