如何更改视频视图的布局参数(centerInParent)
<VideoView
android:id="@+id/videoPlayer"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerInParent="false" />
到
<VideoView
android:id="@+id/videoPlayer"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerInParent="true" />
问候 基督教
答案 0 :(得分:0)
您的意思是,以编程方式设置LayoutParams吗?也许有可能使用像这样的代码
RelativeLayout.Layoutparams params = new RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT);
params.addRule(RelativeLayout.CENTER_IN_PARENT);