4

我试图在TextView屏幕上的随机位置显示 a ,但文本不应超出屏幕。文字总是很短,不超过3个字。这是我到目前为止所拥有的:

        final TextView tv = ((TextView)findViewById(R.id.text);

        final Random rand = new Random();
        final DisplayMetrics metrics = getResources().getDisplayMetrics();
        int width = rand.nextInt(metrics.widthPixels);
        int height = rand.nextInt(metrics.heightPixels);

        final FrameLayout.LayoutParams flp = new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
        flp.setMargins(width, height, 0, 0);
        tv.setLayoutParams(flp);            

更新:

忘了,我有这个函数来获取一个范围内的随机数:

public static int Random(final int lower, final int uppper)
{
    return lower + (int)(Math.random() * ((uppper - lower) + 1));
}

所以我将代码更新为:

        int width = Random(0, metrics.widthPixels);
        int height = Random(0, metrics.heightPixels);

但它有时仍会显示在查看区域之外。我什至从每个值中减去 10,以确保它保持不变。在大多数情况下它确实如此,但它似乎显示在屏幕外的某个地方。

4

3 回答 3

0

但有时仍会显示在查看区域之外

  1. 您的活动顶部没有标题吗?这确实很重要......我不确定,但我认为通知栏也是......如果你在全屏模式下工作,你不应该有问题。

  2. 请记住,xy 坐标始终是对象视图的左上角!所以仍然可能发生你得到一半(或完整的情况下:D)你的图片/文本视图/屏幕外的任何东西......

于 2013-01-02T10:54:23.757 回答
0

为什么你不能这样做?

而不是这样做,您可以找到设备的 Max x 和 Max y,然后根据条件您可以将视图的位置设置为特定位置。

另请参阅:SO

可能对你有帮助。

如有任何疑问,请评论我。

于 2012-11-26T11:58:55.380 回答
0

尝试更多地查找以使随机数保持在最大宽度和高度内,

于 2012-11-26T02:03:51.477 回答