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でボタンを押した後、レイアウト2が非表示になります。画面を下にスワイプしたときにレイアウト2を元に戻したいのですが、どうすれば下にスワイプして検出し、レイアウトを元に戻すことができますか。

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 に答える