如何使ImageButton随机定位在线性布局中? (机器人)

时间:2015-02-10 13:13:22

标签: java android xml android-layout android-imagebutton

我有一个带有一定填充量的线性布局。我想要一个图像按钮随机放置在该线性布局中的任何位置,而不会超出布局。这是我的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);

上述方法无效,我打开此活动时,我的应用程序始终崩溃。有人可以帮帮我吗?

3 个答案:

答案 0 :(得分:1)

您的方法看起来不错,但您还必须考虑图像尺寸 所以我会说:

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

现在你必须更加具体地了解你遇到的崩溃。

编辑:SnyersK也是对的,如果你在元素得到尺寸之前经过那段代码,那么你需要使用ViewTreeObserver。

答案 1 :(得分:0)

我为你提供了部分解决方案。 以下代码将按钮放在随机位置它可以放在屏幕上。您可以通过使用随机生成器来阻止这种情况。

public class MainActivity extends ActionBarActivity {

int width, height;
LinearLayout linearLayout;
Button button;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    linearLayout = (LinearLayout) findViewById(R.id.ll);
    linearLayout.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
        @Override
        public void onGlobalLayout() {
            Log.v(getClass().getSimpleName(), "onGlobalLayout");
            width = linearLayout.getWidth();
            height = linearLayout.getHeight();

            placeButton();

            if (Build.VERSION.SDK_INT >= 16) {
                linearLayout.getViewTreeObserver().removeOnGlobalLayoutListener(this);
            } else {
                linearLayout.getViewTreeObserver().removeGlobalOnLayoutListener(this);
            }
        }
    });

    button = (Button) findViewById(R.id.button);
}

private void placeButton() {
    Log.v(getClass().getSimpleName(), "width: " + width + " Height: " + height);
    LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) button.getLayoutParams();

    Random rand = new Random();

    params.leftMargin = rand.nextInt(width);
    params.topMargin = rand.nextInt(height);

    Log.v(getClass().getSimpleName(), "left: " + params.leftMargin + " top: " + params.topMargin);
    button.setLayoutParams(params);
    button.invalidate();
}

}

您只需等待绘制linearlayout。然后你得到它的宽度和高度,然后把按钮放在一个随机的地方。

注意 这将在您旋转屏幕时移动按钮。如果OnGlobalLayoutListener

,只需添加savedInstanceState == null即可阻止此操作

答案 2 :(得分:0)

只需用此

替换您的代码即可
ImageButton b = (ImageButton) findViewById(R.id.button1);
LinearLayout l = (LinearLayout) findViewById(R.id.lay1);
LinearLayout.LayoutParams params = (LinearLayout.LayoutParams)l.getLayoutParams();
int width = l.getWidth();
int height= l.getHeight();
params.leftMargin = new Random().nextInt(width);
params.topMargin = new Random().nextInt(height);
l.setLayoutParams(params);