2

我有一个内部带有线性布局的滚动视图。此线性布局中的元素之一是 glsurfaceview。

这一切正常,当我滚动glsurfaceview时上下移动但是当glsurfaceview到达它应该被剪切的滚动视图的顶部或底部时,它不是并且在滚动视图之外继续。此屏幕截图应该更清楚:

glsurfaceview 未正确裁剪

不要认为它是完全必要的,但这是我的 layout.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:orientation="vertical"
android:padding="6dip"
>
<ScrollView
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
>
    <LinearLayout
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:orientation="vertical"
    >
        <LinearLayout
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:orientation="horizontal"
        >
            <LinearLayout
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:orientation="vertical"
            android:layout_weight="1"
            >
            <!-- LOTS OF SEEKBARS/TEXTVIEWS -->
            </LinearLayout>
            <LinearLayout
                android:layout_width="fill_parent" 
                android:layout_height="wrap_content" 
                android:layout_weight="1.4"
                android:layout_marginRight="10dip"
                android:layout_marginLeft="10dip"
                android:orientation="horizontal" >
                <android.opengl.GLSurfaceView android:id="@+id/glview"  
                android:layout_width="100px"
                android:layout_height="250px"/>
            </LinearLayout>
        </LinearLayout>

        <LinearLayout
        android:layout_marginTop="6dip"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:layout_weight="1"
        android:orientation="horizontal" >
            <!-- OK/CANCEL BUTTONS -->
        </LinearLayout>
    </LinearLayout>
</ScrollView>
</LinearLayout>

非常感谢所有帮助:)

4

3 回答 3

4

目前不支持在 ScrollView(或 Listview 等)内托管 SurfaceView。

于 2011-02-27T21:14:11.367 回答
0

您可以使用以下几行来删除过度滚动:

glView.getHolder().setFormat(PixelFormat.TRANSLUCENT);
glView.setZOrderOnTop(true);
glView.setZOrderMediaOverlay(true); 

并去除黑色背景:

linearLayout.setBackgroundColor(context.getResources().getColor(R.color.white));
linearLayout.addView(glView);

还在清单文件中添加以下行:

android:hardwareAccelerated="true"
于 2020-12-07T05:53:20.723 回答
0

这与上面回答的支持无关。问题的原因GLSurfaceView是不在视图级别。简而言之:对于你的情况,你GLSurfaceView在第一级,然后是其他视图,holes在视图中GLSurfaceView (这由 Windows 管理器处理,你放在 xml 的位置无关紧要,GLSurfaceView无论如何它都将在第一级,其他视图在下一级)

因此,您需要强制更新视图,并且有解决方法:您应该将滚动GLSurfaceView或 (RecyclerView with GLSurfaceViews) “介于”两个之间FrameLayouts。像这样的东西:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout   
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent" >

     <ScrollView
        android:fillViewport="true"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

       ---- here should be linear layout with your glView, or RecyclerView instead if required ----
     </ScrollView>

   --- this frame also required: ---
   <FrameLayout
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:background="@android:color/transparent" />

</FrameLayout>
于 2019-07-08T14:18:21.427 回答