0

i set my videoView width & height : "fill_parent"

but i want it to fit screen(full screen , don't keep it original ratio)

how can i scale it?

peterlawn
  • 2,371
  • 6
  • 25
  • 44

1 Answers1

1

if you add:

android:layout_alignParentRight="true" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:layout_alignParentBottom="true"

to your view, it will automatically get "fullscreen" :)

cV2
  • 5,229
  • 3
  • 43
  • 53