Having a strange issue, Image given below having size of 136x166
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 136x166)
Why so, anybody faced this issue?