gpt4 book ai didi

android - 查看屏幕外的位置

转载 作者:太空宇宙 更新时间:2023-11-03 13:30:33 26 4
gpt4 key购买 nike

我正在与 4 名玩家玩纸牌游戏,其中手机玩的 3 名玩家的纸牌背面出现在屏幕上,其中一部分在外面。我已经成功地使用顶部和左侧玩家的卡片 View 的边距来做到这一点,但是右侧的玩家有一个问题,即设置卡片 View 的左边距只是调整它的大小并防止它离开屏幕。

截图如下: Screenshot of the game

我想我在这里遗漏了一些东西......

谢谢!

最佳答案

我认为在尝试让它离开屏幕右侧时,您还需要设置右边距。对于一个简单的文本示例,如果屏幕上显示“Here I Am”,并将左边距设置为 -30dp,它会在屏幕中途消失。但是,如果您将左边距设置为 275dp,它将重新调整大小以保留在屏幕上,除非您也将右边距设置为 100dp 之类的值。为了让图片在不调整大小的情况下完成,我不得不将右边距设置为负值。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="275dp"
android:layout_marginRight="100dp"
android:text="here I am" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textView1"
android:layout_marginLeft="200dp"
android:layout_marginRight="-75dp"
android:src="@drawable/jack" />
</RelativeLayout>

关于android - 查看屏幕外的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14011724/

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