在垂直方向上设置视频录制的叠加

时间:2012-03-07 02:38:37

标签: android

所以我有一些代码可以正常录制视频。它使用表面视图来显示正在录制的内容。这是.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <SurfaceView
            android:id="@+id/videoview"
            android:layout_width="720px"
            android:layout_height="480px"/>
        <Button
        android:id="@+id/mybutton"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="REC"
        android:textSize="12dp"/>
        </LinearLayout>
</LinearLayout>

所以我明白这是一个方向改变均匀.t我如何修改给定的xml以包含默认隐藏但在方向更改为垂直的视图时我可以在叠加上执行setVisibility(true)。我希望有一个警告文字,上面写着“没有录制垂直视频”的内容

1 个答案:

答案 0 :(得分:2)

听起来你想要lock the orientation of the activity,因为你不希望用户能够以纵向模式进行互动。

否则,您可以将活动的configchanges设置为隐藏方向和键盘,并根据onConfigurationChanged中的方向更新视图的可见性

public void onConfigurationChanged(Configuration newConfig)
{
    super.onConfigurationChanged(newConfig);
    if(newConfig.orientation ==Configuration.ORIENTATION_LANDSCAPE)
    {
     //something
    }

}

并在onCreate中查看getResources().getConfiguration().orientation