Skip to content

Commit

Permalink
Merge pull request #8808 from garymathews/TIMOB-24344
Browse files Browse the repository at this point in the history
[TIMOB-24344] Android: Fix getDensity() for tvdpi
  • Loading branch information
maggieaxway committed Feb 7, 2017
2 parents a9f3e85 + b7afa82 commit 5fbf08f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public String getDensity() {
case DisplayMetrics.DENSITY_MEDIUM :
return "medium";
case 213: //TV
return "high";
return "tvdpi";
case 280: //Introduce in API 22.
return "xhigh";
case 320:
Expand Down

0 comments on commit 5fbf08f

Please sign in to comment.