gpt4 book ai didi

java - RelativeLayout 在 vi​​ew.setVisibility(View.GONE) 和 view.setVisibility(View.VISIBLE) 之后刷新

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:06:02 28 4
gpt4 key购买 nike

请看下图来理解问题:

enter image description here

如您所见,有一个 RelativeLayout 包含一个自定义 View 和一个 LinearLayout
在它们之间,还有另一个 ViewVisibility 被设置为 GONE。现在,当我按下 Button 时,我想将 GONE View 的可见性更改为 VISIBLE,并重新排列 RelativeLayout ,以便第三个 View 位于自定义 ViewLinearLayout 之间。当我按下另一个按钮时,我想再次让第三 View 消失。我怎样才能做到这一点?

这是我的 XML:

<view
android:id="@+id/CanvasView"
android:layout_width="200dp"
android:layout_height="40dp"
android:layout_above="@+id/HorizontalScrollView"
android:layout_centerHorizontal="true"
android:layout_margin="0dp"
android:layout_marginBottom="0dp"
android:layout_marginTop="0dp"
class="com.example.CanvasView"
android:orientation="vertical" />

<HorizontalScrollView
android:id="@+id/HorizontalScrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/linearLayout2"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:visibility="gone" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:orientation="horizontal" >

//SOME BUTTONS HERE
</LinearLayout>

</HorizontalScrollView>

<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginTop="5dp" >

<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:layout_weight="0.4"
android:maxWidth="200dp"
android:text="Clear"
android:textColor="@android:color/white"
android:textSize="20sp" />

<Button
android:id="@+id/settingsButton"
android:layout_width="44dp"
android:layout_height="44dp"
android:layout_gravity="center_vertical|center_horizontal"
android:background="@drawable/settings_button_selector" />

<Button
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:layout_weight="0.4"
android:enabled="false"
android:maxWidth="200dp"
android:text="Recognize"
android:textColor="@android:color/white"
android:textSize="20sp" />

</LinearLayout>

如果我只在 OnClick() 方法中设置第三个 View 的 Visibility,它会出现在 LinearLayout 上方,它会覆盖自定义 View (我之前试过)。换句话说,它不会将 RelativeLayout 向上移动。

最佳答案

findViewById(R.id.button1).setOnClickListener(new OnClickListener(){
public void onClick(View v) {
findViewById(R.id.hiddenview).setVisibility(View.GONE);
findViewById(R.id.relativelayout).invalidate();
}
});
findViewById(R.id.button2).setOnClickListener(new OnClickListener(){
public void onClick(View v) {
findViewById(R.id.hiddenview).setVisibility(View.VISIBLE);
findViewById(R.id.relativelayout).invalidate();
}
});

关于java - RelativeLayout 在 vi​​ew.setVisibility(View.GONE) 和 view.setVisibility(View.VISIBLE) 之后刷新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17398975/

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