如何在android中设置GONE的可见性后取回布局

时间:2013-08-19 20:29:20

标签: android android-layout

XML -

<RelativeLayout xmlns:tools="http://schemas.android.com/tools"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/one"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
<RelativeLayout xmlns:tools="http://schemas.android.com/tools"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/two"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
</RelativeLayout>
</RelativeLayout>

使用View.GONE按下按钮后隐藏布局二,我在屏幕上向下滑动时想要布局两个,我该怎么做,向下滑动检测并重新布局。

2 个答案:

答案 0 :(得分:4)

yourRelativeLayout.setVisibility(View.Visible);

答案 1 :(得分:0)

只需在您要使用的向下滑动方法中显示的视图上使用yourView.setVisibility(View.VISIBLE)