我有一个带有一定填充量的线性布局。我希望将图像按钮随机放置在该线性布局内的任何位置,而不会超出布局。这是我的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>
我希望 ImageButtonbutton1
随机放置在 layoutlay1
中。
我尝试获取布局的宽度和高度并将它们输入到一个随机函数中,然后我使用该函数为图像按钮提供左边距和上边距,但是每当我这样做时,我的应用程序都会崩溃。这是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);
上述方法不起作用,当我打开此活动时,我的应用程序总是崩溃。有人可以帮我吗?