在ImageView之间切换

时间:2014-08-02 19:31:45

标签: java android xml

我希望能够在点击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>

1 个答案:

答案 0 :(得分:0)

您可以先简单地 Crossfade 这两个ImageView 这是实现此效果的official tutorial

或者您可以直接跳过此official tutorial CardFlip 动画。