我试图在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,以确保它保持不变。在大多数情况下它确实如此,但它似乎显示在屏幕外的某个地方。