<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <RelativeLayout
        android:orientation="vertical"
        android:id="@+id/lastestLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"   
        android:layout_gravity="center">
        <Button
            android:layout_width="fill_parent"
            android:layout_height="50px"
            android:id="@+id/lastestButton"
            android:text="최신 비디오"  
        />
        <ImageView
            android:id="@+id/lastestImageView"
            android:layout_below="@+id/lastestButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/bg_1"
        />     
    </RelativeLayout>
   
    <RelativeLayout
        android:layout_below="@+id/lastestButton"
        android:orientation="vertical"
        android:id="@+id/bestLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"   
        android:layout_gravity="center">
        <Button
            android:layout_width="fill_parent"
            android:layout_height="50px"
            android:id="@+id/bestButton"
            android:text="인기 비디오"  
        />
        <ImageView
            android:id="@+id/bestImageView"
            android:layout_below="@+id/bestButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/bg_2"
        />     
    </RelativeLayout>
</RelativeLayout>

현재 레이아웃은 위와 같습니다.
1.png 

3.PNG
[최신 비디오 버튼을 누르면 위와 같이 인기비디오 레이아웃이 아래로 이동합니다.]

최신비디오 레이아웃에 인기비디오 레이아웃이 위에 있습니다.
최신비디오버튼을 누르면 인기비디오 레이아웃이 아래로 이동합니다.
인기비디오 버튼만 남기고 Invisible시킵니다.
이제는 인기비디오버튼을 눌러 위로 올라오게 해야 하는데 현재 인기비디오 버튼이 클릭이 안됩니다.
대신 인기비디오버튼이 이동하기 전의 위치인, 두번째 그림에서 하얀색으로 표시한 곳을 클릭하면 화면이동이 됩니다.
레이아웃과 관련이 있는것 같은데....
(자바파일을 첨부합니다. TopDownDisplay2.java )
이유를 잘 모르겠습니다. 조언 부탁드립니다. ^^