我对android开发很陌生..
看起来 ImageView 在 VideoView 之上,因此 VideoView 不显示。这是真的?当我想显示视频视图时,我是否需要更改视图的顺序?又何时 imageView 必须显示图像?
我遍历图像和视频列表并显示图像 x 秒,然后转到下一个元素,可能是视频或图像。
这是我的布局:
<LinearLayout
android:id="@+id/LinearLayout01"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:orientation="horizontal">
<ImageView
android:contentDescription="@raw/image"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:scaleType="fitCenter"
android:id="@+id/imageView" />
<VideoView
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:scaleType="fitCenter"
android:id="@+id/videoView" />
<!-- <SurfaceView
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:id="@+id/surface" /> -->
</LinearLayout>