我怎样才能改变android中视频的参数?

时间:2012-11-24 22:21:30

标签: java android android-videoview

如何更改视频视图的布局参数(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" />

问候 基督教

1 个答案:

答案 0 :(得分:0)

您的意思是,以编程方式设置LayoutParams吗?也许有可能使用像这样的代码

    RelativeLayout.Layoutparams params = new RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT);
    params.addRule(RelativeLayout.CENTER_IN_PARENT);