记录我的bug问题,关于View隐藏对其他空间的影响问题

在本文中,作者记录了一个关于Android开发的bug,即在特定设备(如小米、三星)上,隐藏某个View后导致下方布局全部消失的问题。通过代码示例和排查过程,探讨了这个问题的出现原因。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

首先,先上代码

		RelativeLayout insuranceChild = (RelativeLayout) findViewById(R.id.insuranceChild);
		insuranceChild.setVisibility(View.GONE);
		
		RelativeLayout insuranceAgecoverAge = (RelativeLayout) findViewById(R.id.insuranceAgecoverAge);
		insuranceAgecoverAge.setVisibility(View.GONE);
		
		RelativeLayout insuranceLimit = (RelativeLayout) findViewById(R.id.insuranceLimit);
		insuranceLimit.setVisibility(View.VISIBLE);

看起来没有任何问题吧,三个RelativeLayout,隐藏两个,另一个现实,然后外层的是LinearLayout,没问题。

在我的模拟器上,正常现实,nexus5正常显示,但是在小米,三星等几部机型,出现下方的布局全部消失了,那我一个找啊

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/Appointment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#F2F2F2" >

    <ScrollView
        android:id="@+id/ScrollView"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_marginBottom="50dip"
        android:background="#F2F2F2"
        android:fillViewport="true" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="80dp"
                android:background="#fefefefe"
                android:gravity="center_vertical" >

                <TextView
                    android:id="@+id/appointment_title"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="12dp"
                    android:text="中融信托-兴创美林湖"
                    android:textColor="#404040"
                    android:textSize="18sp"
                    android:textStyle="bold" />
            </RelativeLayout>

            <View
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:src="@drawable/main_listitem_view_h" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="7dp"
                android:layout_marginRight="7dp"
                android:background="#F2F2F2"
                android:orientation="vertical" >

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="52dip"
                    android:layout_marginTop="10dp"
                    android:background="#DBDBDB"
                    android:padding="1dp" >

                    <EditText
                        android:id="@+id/appointment_name"
                        android:layout_width="match_parent"
                        android:layout_height="52dp"
                        android:background="#fefefefe"
                        android:hint="理财师姓名"
                        android:paddingLeft="10dp" />
                </RelativeLayout>

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="52dp"
                    android:layout_marginTop="10dp"
                    android:background="#DBDBDB"
                    android:padding="1dp" >

                    <EditText
                        android:id="@+id/app_phoneNumber"
                        android:layout_width="match_parent"
                        android:layout_height="52dp"
                        android:background="#fefefefe"
                        android:hint="理财师电话"
                        android:paddingLeft="10dp" />
                </RelativeLayout>

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="52dp"
                    android:layout_marginTop="10dp"
                    android:background="#DBDBDB"
                    android:padding="1dp" >

                    <RelativeLayout
                        android:id="@+id/ins_fujiaxian"
                        android:layout_width="match_parent"
                        android:layout_height="52dp"
                        android:background="#fefefefe"
                        android:gravity="center_vertical" >

                        <TextView
                            android:id="@+id/app_money"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginLeft="12dp"
                            android:background="#fefefefe"
                            android:text="预约金额"
                            android:textColor="#ffbbbbbb"
                            android:textSize="18sp" />

                        <ImageView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_alignParentRight="true"
                            android:layout_marginRight="10dp"
                            android:layout_marginTop="3dp"
                            android:background="@drawable/arrow" />
                    </RelativeLayout>
                </RelativeLayout>

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="150dp"
                    android:layout_marginTop="10dp"
                    android:background="#DBDBDB"
                    android:padding="1dp" >

                    <EditText
                        android:id="@+id/app_content"
                        android:layout_width="match_parent"
                        android:layout_height="150dp"
                        android:background="#fefefefe"
                        android:gravity="top"
                        android:hint="其他说明"
                        android:maxLength="50"
                        android:paddingLeft="10dp"
                        android:paddingTop="18dp" />
                </RelativeLayout>
            </LinearLayout>
        </LinearLayout>
    </ScrollView>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="45dip"
        android:layout_alignParentBottom="true"
        android:layout_marginLeft="7dp"
        android:layout_marginRight="7dp"
        android:layout_marginTop="2dp" >

        <Button
            android:id="@+id/btn_post"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="3dip"
            android:background="#BB8855"
            android:text="提交预约"
            android:textColor="#fefefefe" />
    </RelativeLayout>

</RelativeLayout>

布局也完全没问题,看吧看,可纠结了,咋回事呢

~~~~~~~



好了,最后就说一个词  view

杨峥啊





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值