gpt4 book ai didi

java - 将两个 ImageView 放在另一个 ImageView 之上

转载 作者:数据小太阳 更新时间:2023-10-29 02:30:21 26 4
gpt4 key购买 nike

我试图将 2 个 imageView 放在另一个之上。这就是我想要完成的。 enter image description here

所以我想要的是,将 imageView #2 放置在与图片中的 imageView #1 完全相同的位置。这是我到目前为止尝试过的,但它没有像我想要的那样工作。当我在不同的设备上尝试时,图像没有保持准确的位置 :(

<LinearLayout
android:id="@+id/wrap"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/tvding"
android:orientation="vertical" >

<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:scaleType="fitCenter"
android:src="@drawable/base" />

<ImageView
android:id="@+id/imageViewCompass"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="25dp"
android:scaleType="fitCenter"
android:src="@drawable/niddle" />
</FrameLayout>
</LinearLayout>

提前致谢。

最佳答案

试试这个代码,我用它来显示带有重叠播放图像的视频缩略图`

<FrameLayout
android:id="@+id/playVideo"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/videoImage"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="center"
android:src="@drawable/videoThumb" />
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:scaleType="centerCrop"
android:layout_margin="10dp"
android:src="@drawable/play_button"/>
</FrameLayout>`

根据您的要求更改高度宽度。

关于java - 将两个 ImageView 放在另一个 ImageView 之上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22565866/

26 4 0