1

ビデオビューのレイアウト パラメータ (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" />

よろしくクリスチャン

4

1 に答える 1

0

プログラムでLayoutParamsを設定するということですか?多分それはこのようなコードで可能です

    RelativeLayout.Layoutparams params = new RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT);
    params.addRule(RelativeLayout.CENTER_IN_PARENT);
于 2012-11-25T19:20:49.133 に答える