我需要在我的GLSurfaceView上方放置两个图像,每个图像需要占据50%的widt手100%的高度(水平视图)。我从api加载图像所以我首先得到一个png的base64字符串。
GLSurfaceView看起来像这样:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="me.kevingleason.androidrtc.de.kevingleason.androidrtc.VideoChatActivity">
<android.opengl.GLSurfaceView
android:id="@+id/gl_surface"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone" />
如何在此视图中“放置”2张图像?
</RelativeLayout>