I want my big picture to fit the whole screen, but also it should overlap at the width.
have tried this:
<ImageButton
android:id="@+id/gameover"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/farmlvl1"
android:scaleType="matrix"
android:visibility="visible" />
have a look at the picture:
Use this:
You also need
adjustViewBounds
because else it sometimes wouldn't fit the height.