peterlawn
peterlawn

Reputation: 2381

android videoview scalemode

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

Answers (1)

cV2
cV2

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

Related Questions