gpt4 book ai didi

java - 如何使 ImageButton 随机放置在线性布局中? (安卓)

转载 作者:行者123 更新时间:2023-11-30 11:08:44 33 4
gpt4 key购买 nike

我有一个带有一定填充量的线性布局。我希望将图像按钮随机放置在该线性布局内的任何位置,而不会超出布局。这是我的 xml 代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textSize="45dp"
android:text="Text 1"
android:id="@+id/text1" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textSize="30dp"
android:text="Text 2"
android:id="@+id/text2" />
<LinearLayout
android:id="@+id/lay1"
android:layout_width="match_parent"
android:layout_height="450dp"
android:layout_margin="20dp">

<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="25dp"
android:src="@drawable/ib"
android:id="@+id/button1"/>

</LinearLayout>
</LinearLayout>

我希望将 ImageButton button1 随机放置在布局 lay1 中。

我已经尝试获取布局的宽度和高度并将它们提供给一个随机函数,然后我使用该函数为图像按钮提供左边距和顶部边距,但每当我这样做时我的应用程序总是崩溃。这是 Java 代码:

ImageButton b = (ImageButton) findViewById(R.id.button1);
LinearLayout l = (LinearLayout) findViewById(R.id.lay1);
LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) b.getLayoutParams();
int width = l.getWidth();
int height= l.getHeight();
params.leftMargin = new Random().nextInt(width);
params.topMargin = new Random().nextInt(height);
b.setLayoutParams(params);

上述方法不起作用,当我打开此 Activity 时,我的应用程序总是崩溃。有人可以帮帮我吗?

最佳答案

你的方法看起来不错,但你还必须考虑图像大小。
所以我会放一些类似的东西:

params.leftMargin = new Random().nextInt(width - b.getWidth());
params.topMargin = new Random().nextInt(height - b.getHeight());

现在您必须更具体地说明您遇到的崩溃。

编辑:SnyersK 也是正确的,如果您在元素获得其尺寸之前浏览那段代码,那么您将需要使用 ViewTreeObserver。

关于java - 如何使 ImageButton 随机放置在线性布局中? (安卓),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28432597/

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