gpt4 book ai didi

java - Android元素固定定位

转载 作者:行者123 更新时间:2023-12-01 05:29:05 26 4
gpt4 key购买 nike

假设我有一个表格行,并且该表格行内有 3 个元素(ImageViews)。

在第一种情况下,所有 3 个项目的可见性值均为 VISIBLE。假设我将某个元素的可见性设置为“GONE”。那么在这种情况下,其他 2 项会被调整到错过的一次位置。

但我想要的是我需要将所有项目放在固定位置。因此,如果我将任何项目的可见性设置为“GONE”状态,那么在这种情况下,其余元素也将位于同一位置。

任何人都可以帮助我实现这一目标吗?

最佳答案

Try this out,
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >


<TableLayout
android:id="@+id/tableLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="1" >

<TableRow
android:id="@+id/button"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/topbg" >

<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_span="1"
android:src="@drawable/ic_add" />

<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="1"
android:layout_span="1"
android:src="@drawable/ic_add" />

<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="2"
android:layout_span="1"
android:src="@drawable/ic_add" />
</TableRow>
</TableLayout>

</LinearLayout>

关于java - Android元素固定定位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9310371/

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