gpt4 book ai didi

Android - 如何使用 RelativeLayout 定位此自定义气球 View

转载 作者:搜寻专家 更新时间:2023-11-01 08:13:14 25 4
gpt4 key购买 nike

我一直在努力让它发挥作用。

看下图,我想把气泡放在图片下面。
当然,我希望能够将 View 放置在我喜欢的任何地方。

我认为问题出在父 View 中,所以我将父 xml 添加到 .
也许我需要将 RelativeLayout 更改为其他内容,
我尝试了很多东西,但没有任何效果

.

enter image description here

这是我的气泡 xml

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

<ImageView android:id="@+id/imv_balloon_gallery_activity_send"
android:src="@drawable/balloon_gallery"
android:scaleType="fitCenter"
android:layout_height="fill_parent"
android:layout_width="fill_parent"/>

</FrameLayout >

这是我将气泡插入的父级.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/relativelayout_main_activity_back"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical">


<Gallery xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gallery_activity_back"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:spacing="2dip"
android:gravity="top"
android:paddingTop="20dip"
/>
<RelativeLayout
android:id="@+id/relativeLayoutinner_activity_back"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" >

<EditText
android:id="@+id/etx_addtext_activity_back"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="false"
android:text="@string/string_enter_text_here"
/>

</RelativeLayout>

</RelativeLayout>

最佳答案

您需要创建一个包含 ImageView 和其中气泡的 RelativeLayout。使用 position below 属性将气泡定位在 ImageView 下方。从那里您可以将 RelativeLayout 移动到任何地方,气泡将保留在图像下方。

关于Android - 如何使用 RelativeLayout 定位此自定义气球 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7575499/

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