<TextView android:id="@+id/text_type" android:layout_width="match_parent" android:layout_height="wrap_content" /> <TextView android:id="@+id/text_style" android:layout_width="match_parent" android:layout_height="wrap_content" /> <TextView android:id="@+id/text_inventory_num" android:layout_width="match_parent" android:layout_height="wrap_content" /> <ListView android:id="@+id/list_view" android:layout_width="match_parent" android:layout_height="match_parent">如何隐藏
时间: 2023-12-10 21:37:18 浏览: 275
你可以在对应的 XML 文件中找到这些视图的定义,并设置它们的 visibility 属性为 "gone",这样它们就会被隐藏起来。例如:
```
<TextView
android:id="@+id/text_type"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone" />
<TextView
android:id="@+id/text_style"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone" />
<TextView
android:id="@+id/text_inventory_num"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone" />
<ListView
android:id="@+id/list_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
```
这样,前三个 TextView 就会被隐藏起来,只有 ListView 会显示出来。
阅读全文