gpt4 book ai didi

android - 重叠图像(扑克牌)

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:44:44 37 4
gpt4 key购买 nike

我试图让我的游戏中的扑克牌重叠,这样只能看到一张牌的前半部分,而另一半被下一张扑克牌覆盖。唯一应该完全可见的卡片是最后一张/最右边的卡片。

我将以下代码与 framelayout 和 relativelayout 一起使用都无济于事。谁能提供一些建议?

public int shouldShow(int numberOfCards, int card, int id)
{
if(card == -1)
hide(id);
else
{
findViewById(id).setBackgroundDrawable(deckimages[card]);
//findViewById(id).offsetLeftAndRight(findViewById(id).getWidth()* numberOfCards / 2);
show(id);
//findViewById(id).setPadding(findViewById(id).getWidth()* numberOfCards / 2, 0,0,0);
return numberOfCards+1;
}
return numberOfCards;
}

我已经尝试过使用填充和偏移方法,这两种方法都不适合我。但我也注意到 getwidth() 和 getmeasuredwidth() 方法返回 0。

关于我应该使用哪种布局以及为什么 getwidth 函数不起作用的任何建议?

xml 代码在下面......会有比这更多的图像,但这是我正在测试的

<RelativeLayout android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/RelativeLayout1">
<ImageView android:id="@+id/imageView2" android:layout_width="wrap_content" android:layout_height="wrap_content"></ImageView>
<ImageView android:id="@+id/imageView3" android:layout_width="wrap_content" android:layout_height="wrap_content"></ImageView>
</RelativeLayout>

最佳答案

在 4 小时搞乱代码和谷歌搜索后,我一直坚持这个问题。我终于找到了解决方案,而且非常简单。

您所要做的就是将下一张卡片与上一张卡片的顶部和左侧对齐。这将使第二张卡片放在之前的卡片之上。然后设置 leftMargin 将顶部的卡片向右“推”,创建部分重叠效果。

这是我的代码(以编程方式完成):

for(int i=0; i<hand.size();i++){
int c = hand.get(i).getCardResource();
ib = new ImageButton(this);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.ALIGN_TOP, i-1);
params.addRule(RelativeLayout.ALIGN_LEFT,i-1);
params.leftMargin= 40;
ib.setImageResource(c);
ib.setClickable(true);
ib.setPadding( 3, 3, 3, 3);
ib.setId(i);
ib.setLayoutParams(params);
ll.addView(ib);

}

关于android - 重叠图像(扑克牌),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7918714/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com