我希望能够在点击imgCardF和imgCardB之间切换imgCardF和imgCardB, 喜欢翻转卡的效果。 这里是我的代码xml:
<?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="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/imgCardF"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_weight="1"
android:background="#34232b" />
<ImageView
android:id="@+id/imgCardB"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_weight="1"
android:background="#ababab" />
</RelativeLayout>
</LinearLayout>
答案 0 :(得分:0)
您可以先简单地 Crossfade 这两个ImageView 这是实现此效果的official tutorial。
或者您可以直接跳过此official tutorial的 CardFlip 动画。