可能我的问题可能很愚蠢。我发布了一个知道是否有可能在Relativelayout下添加两个surfaceview对象。
我需要一个表面视图来流式传输视频,另一个视图执行精灵动画。
我尝试将它们置于相对布局下,但我首先在布局上放置的surfaceview优先选择,第二个视图消失。
请建议我解决。
编辑:
<RelativeLayout android:id="@+id/widget31"
android:orientation="vertical"
android:layout_width="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="fill_parent">
<LinearLayout android:layout_height="fill_parent" android:layout_width="fill_parent" android:id="@+id/widget30" android:orientation="vertical">
</LinearLayout>
<com.mycalss.CameraView
android:id="@+id/camerapreview" android:clickable="true"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:focusable="true"/>
</RelativeLayout>
现在我在代码
中的linearlayout-widget30中添加我的图形的surfaceview答案 0 :(得分:0)
您似乎没有正确调整视图大小:尝试将两者的layout_height
设置为0dp,然后将两者的layout_weight
设置为1并查看它们是否都显示。