1

我有一个有趣的困境。我有一个ListView用来包含CardViews 的。然而,每个CardView实际上是一对两个:一张默认(正面)卡片,然后是一张背面卡片,我在用户单击卡片时将其动画化为翻转。由于用户可能不会单击任何列表项,因此我使用 aViewStub作为后卡,并且会在单击列表项时懒惰地膨胀。

因此,当用户第一次单击卡片以翻转到背面时,一切看起来都很好并且翻转工作正常(onItemClick()通过单击卡片内的任何位置来调用)。但是,任何进一步尝试再次翻转到前面都不会触发onItemClick()调用,除非我单击视图的最顶部(列表项)。

我做了很多调试(改变焦点和大小)并发现这只是在ViewStub通货膨胀之后引起的。使前后卡都正常CardViews 允许onItemClick()每次成功触发。

那么是什么原因使ViewStub我的 fubaringonItemClick()呢?有没有办法解决它,而不是让我的所有观点自动膨胀?

这是我正在使用的代码:

card_container_layout.xml

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="5dp">

    <include layout="@layout/card_front_view"
        android:id="@+id/main_card_view_layout" />

    <ViewStub android:id="@+id/stub_flipped_card"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:inflatedId="@+id/flipped_card"
        android:layout="@layout/card_back_view" />
</FrameLayout>

card_front_view.xml

<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent" android:layout_height="wrap_content"
    card_view:cardCornerRadius="5dp"
    android:id="@+id/card_view"
    android:descendantFocusability="blocksDescendants" >

    <LinearLayout
        android:orientation="vertical" android:layout_width="match_parent"
        android:layout_height="match_parent">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="@dimen/card_view_height">
            <ImageView android:id="@+id/img_main_card"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:src="@drawable/my_image"
                android:background="#ff10fffd" />

            <TextView
                android:id="@+id/lbl_name"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Name"
                style="@style/main_card_title_text"
                android:layout_alignParentBottom="true"
                android:padding="15dp"
                android:background="#5b000000"/>

        </RelativeLayout>

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:layout_gravity="center_horizontal"
            android:padding="4dp" >

            <TextView
                android:id="@+id/lbl_item_count"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                style="@style/main_card_text" />

            <ImageView android:id="@+id/img_sync_state"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_alignParentEnd="true"
                android:layout_marginEnd="10dp"
                android:layout_marginRight="10dp"
                android:layout_centerVertical="true"/>
        </RelativeLayout>
    </LinearLayout>
</android.support.v7.widget.CardView>

card_back_view.xml

<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    card_view:cardCornerRadius="5dp"
    android:id="@+id/flipped_card"
    android:alpha="0"
    android:descendantFocusability="blocksDescendants">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Here are the items:"
            android:gravity="center"
            style="@style/card_flipped_title_text"
            android:background="#ad000000"/>
        <GridView android:id="@+id/grid_images"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:numColumns="3">
            <!-- make believe there were items here -->
        </GridView>
    </LinearLayout>
</android.support.v7.widget.CardView>
4

1 回答 1

0

好的,我做了更多的研究,看来它根本不是ViewStub导致它的原因,但实际上是GridView. 由于我无法弄清楚的原因GridView,尽管如上面的示例 XML 所示,将可聚焦和可点击设置为 false 并阻止后代可聚焦性,但仍继续劫持所有触摸事件。

因此,我解决它的方法是拦截来自 GridView 的所有触摸事件,并且在 中onTouchListener(),如果我检测到一个MotionEvent.ACTION_UP,表明我一直在触摸屏幕并刚刚释放,然后我将手动执行相同的操作正如我在其余部分所做的那样CardView

itemGrid.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View grid, MotionEvent event) {
            // hacky way to make sure that we absorb the GridView's focus stealing and still do the right thing
            if (MotionEvent.ACTION_UP == event.getAction()) doExpectedStuff();
            return true; // absorb the touch here
        }
});

抱歉,这不是最优雅的解决方案,并且同意捕获事件对于大多数人来说并不是一种万能的方法,但它在我的具体情况下有所帮助。希望这仍然可以帮助其他人。

于 2015-09-07T04:00:35.980 回答