1

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 按钮后,布局二被隐藏,当我在屏幕上向下滑动时,我想要布局二,我该怎么做,向下滑动检测并恢复布局。

4

2 回答 2

4
yourRelativeLayout.setVisibility(View.Visible);
于 2013-08-19T20:30:29.543 回答
0

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

于 2013-08-19T20:33:27.517 回答