gpt4 book ai didi

android - setVisibility(GONE) View 变得不可见但仍占用空间

转载 作者:IT王子 更新时间:2023-10-28 23:42:22 28 4
gpt4 key购买 nike

我有一个实际上是一个按钮的 View 。这是它的 XML 布局 (add_new.xml)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/buttonNew"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/bText"
android:onClick="addNew"/>
</LinearLayout>

当我像这样将其可见性设置为 GONE 时

v = getActivity().getLayoutInflater().inflate(R.layout.add_new, null);
v.setVisibility(View.GONE);

它消失了,但仍然占据空间。像这样:enter image description here

这个按钮是ListView中的一个header,由这个xml定义:

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

<ImageView
android:id="@+id/icon"
android:layout_width="30dp"
android:layout_height="40dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="10dp"
android:layout_marginTop="4dp"
android:src="@drawable/ic_launcher">
</ImageView>

<TextView
android:id="@+id/label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@+id/label"
android:textSize="20dp" >
</TextView>

</LinearLayout>

当它的可见性设置为 GONE 时,我不希望它占用额外的列表项。正如文档中所述。

GONE - This view is invisible, and it doesn't take any space for layout purposes.

关于如何使它不占用空间的任何想法?

谢谢,丹尼斯xx

附:我的 ListView 位于 FoldersFragment ListFragment 内,这是我的 MainActivity 的 xml,其中显示了 FoldersFragment

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >

<fragment
android:id="@+id/foldersFragment"
android:layout_width="200dip"
android:layout_height="match_parent"
class="com.example.fragments.FoldersFragment" >
</fragment>

<fragment
android:id="@+id/detailFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.example.fragments.DetailFragment" >
</fragment>

</LinearLayout>

最佳答案

在我看来,这是一个 Android 错误,我们只是解决了这个问题:

<FrameLayout android:layout_width="match_parent"
android:layout_height="wrap_content">

<LinearLayout android:id="@+id/layout_to_hide"
android:layout_width="match_parent"
android:layout_height="wrap_content">
//Put here your views
</LinearLayout>
</FrameLayout>

只需使用 Visible.GONE 隐藏 ID 为 LAYOUT_TO_HIDE 的 LinearLayout,然后根 FrameLayout 将折叠其高度,为您提供一个带有非空白标题的“隐藏”。

关于android - setVisibility(GONE) View 变得不可见但仍占用空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12302172/

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