메인화면에 flip기능 addFlipView로 추가해서 플립보드처럼 플립기능 구현했는데

플립은 잘됩니다만...

그위에 올린 아이콘 이벤트리스너가 하나도 안먹네여...

혹시 프레임레이아웃 때문인가싶기도하고..



XML파일 입니다.. id가 lefticon인거랑.... first_page안에있는 그림들도 이벤트가 안먹습니다 ㅜㅜ


<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"

    android:layout_height="fill_parent"

    android:orientation="vertical" >


    <FrameLayout

        android:id="@+id/mframe"

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        android:orientation="horizontal" >


        <!-- Use a FrameLayout so that the app and the menu are layered on top of each other. -->


        <include

            android:id="@+id/app"

            layout="@layout/first_page" />


        <include

            android:id="@+id/menu"

            layout="@layout/dummy_menu" />


        <RelativeLayout

            android:id="@+id/btns"

            android:layout_width="match_parent"

            android:layout_height="wrap_content"

            android:orientation="horizontal" >


            <Button

                android:id="@+id/lefticon"

                android:layout_width="55dp"

                android:layout_height="55dp"

                android:background="@drawable/left_menu_icon" />

        </RelativeLayout>


    </FrameLayout>


</LinearLayout>


Screenshot_2012-09-21-18-47-23.png


1,2,3,4번 아무것도 이벤트가 먹히지 않습니다 ㅜㅜ도와주세요..