解決方案1:(在這部作品中最案例..)
修改您VideoView xml文件類似,
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<VideoView
android:id="@+id/videoView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerInParent="true" />
</RelativeLayout>
解決方案2 ..
或手柄在你的活動方向變化,
對於AndroidManifest.xml中視頻的活動標記:
android:configChanges="orientation"
所以整條生產線是這樣的:
<activity android:name="<Your video avtivityy>" android:configChanges="orientation" />
,然後添加下面的方法來此活動:
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
// stuff for set video to proper position..
}
讓我知道發生什麼事......
的方法2是答案。謝謝。 – brian
但我不知道每一步的工作是什麼。 – brian
是的,我想知道onConfigurationChanged函數的意思。 – brian