gpt4 book ai didi

java - 如何在android中将src设置为relativeLayout?

转载 作者:行者123 更新时间:2023-12-01 04:13:24 25 4
gpt4 key购买 nike

我有 2 个图像:bg_Imagebox_image

我想使用bg_Image作为背景。

我使用了androidrelativelayout,但是当我将它设置为背景时 - 它跨度太大了。

我希望它保持原始的 bg_Image 大小。我无法将RelativeLayout src 设置为bg_Image

另一件事是 box_imagebg_Image 的子级

因为我想使用动画来相对于其父尺寸移动box_image

这就是为什么我希望他们有亲子关系。

<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/accelerate_interpolator">
<translate
android:fromXDelta="-100%p"
android:toXDelta="0%"
android:duration="600">

</translate>
</set>

我该怎么做?

最佳答案

设置相对布局高度和宽度以包裹内容,然后为其设置背景。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="your background image">
</Relativelayout>

或者给相对布局固定高度和宽度。

希望能有所帮助。

关于java - 如何在android中将src设置为relativeLayout?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19678016/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com