gpt4 book ai didi

java - 设置 View 可见性 GONE 保留其他 View

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

我有一些看起来像这样的 xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="text"
android:id="@+id/Text"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:textSize="34sp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Call"
android:id="@+id/callText"
android:layout_below="@+id/Text"
android:layout_alignLeft="@+id/Text"
android:layout_alignStart="@+id/Text"
/>

/>

现在我想将 ID 为 Text 的 TextView 设置为 GONE,但是当我这样做时,ID 为 callText 的 TextView 也消失了,我想要的是将 Text 设置为 GONE 然后让 callText 向上移动并保持可见?

我该怎么做?

谢谢

最佳答案

如果缺少指定的 anchor ,您可以使用 android:layout_alignWithParentIfMissing="true" 将父级用作 anchor :

http://developer.android.com/reference/android/widget/RelativeLayout.LayoutParams.html#attr_android:layout_alignWithParentIfMissing

If set to true, the parent will be used as the anchor when the anchor cannot be be found for layout_toLeftOf, layout_toRightOf, etc.

关于java - 设置 View 可见性 GONE 保留其他 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32358003/

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