I am reading this article: http://developer.android.com/guide/practices/screens_support.html
It says that the formula Android uses to convert between a dp unit to a px unit is the following:
px = dp * (dpi / 160)
The article also gives an example when the dpi is 240, which gives us px = 1.5 (I'm calculating for one single dp pixel)
However, what exactly does 1.5 mean here? Once the px units are actually the physical device pixels, will Android draw 1 or 2 pixels?