Android(Java)中的纸牌堆栈(类似单人纸牌游戏)

时间:2019-06-21 16:31:08

标签: java android

如何在Android的纸牌游戏中制作画面呢?

enter image description here

编辑:感谢注释修正了我的尝试:

   <FrameLayout
        android:id="@+id/tableauThreeLayout"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="vertical">

        <ImageView
            android:id="@+id/tableau23"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:scaleType="centerCrop"
            android:src="@drawable/ap"/>
        <ImageView
            android:id="@+id/tableau13"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="40dp"
            android:adjustViewBounds="true"
            android:scaleType="centerCrop"
            android:src="@drawable/ad"/>

        <ImageView
            android:id="@+id/tableau03"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="80dp"
            android:adjustViewBounds="true"
            android:scaleType="centerCrop"
            android:src="@drawable/ac"/>


    </FrameLayout>

它有效,但是似乎不是最佳解决方案。正确的方法是什么? (考虑到我要建造Cruel Solitaire:https://en.wikipedia.org/wiki/Cruel_(solitaire),所以我必须做12堆游戏)

0 个答案:

没有答案