Having a strange issue, Image given below having size of 136×166

when I set this in ImageView/Button with wrap_content then this image became large
<Button
android:id="@+id/btn_reports"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/report_image" />
Output: with wrap_content

<Button
android:id="@+id/btn_reports"
android:layout_width="136px"
android:layout_height="166px"
android:background="@drawable/report_image" />
Output: with fixed sized imagesize(original 136×166)

Why so, anybody faced this issue?
It is because I created icon for
hdpiand putting icon indrawablefolder rather thandrawable-hdpiI got the solution by my own while doing research Application support multiple screen and you can find the answer here