我有一个有趣的困境。我有一个ListView
用来包含CardView
s 的。然而,每个CardView
实际上是一对两个:一张默认(正面)卡片,然后是一张背面卡片,我在用户单击卡片时将其动画化为翻转。由于用户可能不会单击任何列表项,因此我使用 aViewStub
作为后卡,并且会在单击列表项时懒惰地膨胀。
因此,当用户第一次单击卡片以翻转到背面时,一切看起来都很好并且翻转工作正常(onItemClick()
通过单击卡片内的任何位置来调用)。但是,任何进一步尝试再次翻转到前面都不会触发onItemClick()
调用,除非我单击视图的最顶部(列表项)。
我做了很多调试(改变焦点和大小)并发现这只是在ViewStub
通货膨胀之后引起的。使前后卡都正常CardView
s 允许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>