<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
 <Button
  android:id="@+id/btn1"
  android:text="버튼1"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"/>

    <LinearLayout
     android:id="@+id/lin"
     android:layout_width="fill_parent"
     android:layout_height="300px"
     android:background="#ffffff">
    </LinearLayout>

 <Button
  android:id="@+id/btn2"
  android:text="버튼2"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"/>
</LinearLayout>
이런 레이아웃인데요....
애니메이션을 줘서 버튼1을 클릭하면 리니어 레이아웃과 버튼2가 같이 아래로 내려가요
그런데 리니어 레이아웃이 버튼1을 가리면서 내려오거든요...
가리지 않고 내려오게 하고 싶은데.. 도무지 모르겠네요.. 좀 도와주세요