Reputation: 2381
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?
Upvotes: 0
Views: 2501
Reputation: 5319
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" :)
Upvotes: 1