任何人都可以向我解釋如何實現一些在CardView中的Google I/O 2014上演示的視覺觸控反饋。Android-L CardView視覺觸控反饋
下面是我如何使用CardView在XML中,可能有一些我很想念的東西,所以我只是想知道是否有人可以幫助我?
<!-- A CardView -->
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/CardView_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
card_view:cardCornerRadius="4dp"
android:elevation="2dp">
<LinearLayout
android:id="@+id/LinearLayout_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:onClick="RunSomeMethod"">
<!-- Main CardView Content In Here-->
</LinearLayout> </android.support.v7.widget.CardView>
謝謝,我也不得不移動「安卓的onClick =‘RunSomeMethod’」高達的CardView,但不幸的是我只see'ing從中心動畫的按鈕,而不是我的手指最後一次碰到的地方......我會投你的答案,但我還不能......迄今爲止對此感到抱歉。 – Smiler
是的,你是對的。 'android:clickable =「true」'也可以。根據源自按鈕中心的動畫,我認爲這是一個錯誤。 – nhaarman
很高興知道:)。再次感謝您的幫助Niek :)。 – Smiler