在xamarin(视觉工作室)中刷卡,用于安卓地图/新闻中的谷歌卡片

时间:2017-01-07 09:13:37

标签: c# android visual-studio xamarin.android cardview

下面是我的应用程序布局,我已经包含了卡片视图。但无法在地图/新闻中像刷卡一样刷卡。

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="8dp">
        <android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto"
            android:id="@+id/card_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            card_view:cardCornerRadius="8dp"
            android:elevation="2dp"
            card_view:cardBackgroundColor="@color/orange">
            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@color/white"
                android:id="@+id/contenLayout">
                <ImageView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:id="@+id/imgSource"
                    android:layout_centerInParent="true"
                    android:scaleType="fitXY"
                    android:src="@drawable/image" />
                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/mytextview"
                    android:textSize="20sp"
                    android:layout_alignParentBottom="true"
                    android:textColor="@color/content"
                    android:background="@color/orange"
                    android:gravity="center_horizontal"
                    android:paddingBottom="5dp"
                    android:paddingTop="5dp"/>
            </RelativeLayout>
        </android.support.v7.widget.CardView>
    </LinearLayout>

我需要在每张刷卡中加载不同的数据。与简单的屏幕触摸事件不同,刷卡是可逆的 当我从左向右或从右向左滑动卡片时,应该可以看到下一张卡片。我还检查了xamarin论坛上的解决方案,发现xcardview只适用于IOS。

1 个答案:

答案 0 :(得分:0)

我在Xamarin论坛上找到了解决方案。实际上我试图实现类似于ViewPager和Carousel View的功能。以下是ViewPager讨论的链接。

https://forums.xamarin.com/discussion/3174/viewpager-example-with-android-4-0

下面是Git上Cheesebaron的非常好的示例代码 https://github.com/Cheesebaron/ViewPagerIndicator