1

我有以下 XML 文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/welcome_bg" >

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ImageView
            android:id="@+id/arrowLeft"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical|left"
            android:layout_marginLeft="10dp"
            android:clickable="true"
            android:contentDescription="@string/arrow_left"
            android:focusable="true"
            android:src="@drawable/arrow_left"
            android:visibility="invisible" />

        <ImageView
            android:id="@+id/arrowRight"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical|right"
            android:layout_marginRight="10dp"
            android:clickable="true"
            android:contentDescription="@string/arrow_right"
            android:focusable="true"
            android:src="@drawable/arrow_right" />

        <android.support.v4.view.ViewPager
            android:id="@+id/tutorialViewPager"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </FrameLayout>

</RelativeLayout>

我的问题是,当用户单击左箭头或右箭头时,寻呼机应该翻转,但我无法在左箭头或右箭头 ImageView 上获得点击事件。单击箭头时,我无法获取事件。我在两个箭头上都设置了 onClickListeners,但它们从未被调用过。有人可以帮我吗?

4

1 回答 1

1

我想到了。我不得不使用rightArrow.bringToFront()and leftArrow.bringToFront()。这将按钮带到了前面,我能够在它们上获得点击事件。

于 2012-09-05T18:04:46.207 回答