Android 移动按钮
我想创建活动,并将按钮放在屏幕的任何位置。
但我不知道该怎么做。
例如:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<Button android:text="start" android:layout_height="wrap_content" android:layout_gravity="bottom|center" android:layout_width="wrap_content"></Button>
</LinearLayout>
在这种情况下,按钮出现在屏幕底部。但我希望按钮高一点。但我不能。 那么有没有什么方法可以使用坐标或其他方式将按钮放在屏幕上?
I want create activity, and put buttons on any position of screen.
But I can't figure out how to do that.
For example:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<Button android:text="start" android:layout_height="wrap_content" android:layout_gravity="bottom|center" android:layout_width="wrap_content"></Button>
</LinearLayout>
In this case button apears in the bottom of screen. But I want button to be a little higher.But I can't.
So is there any method to put buttons on the screen using coordinates or anything else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试将
android:layout_marginBottom="10dp"
添加到按钮。像这样:
Try adding
android:layout_marginBottom="10dp"
to the button.Like this:
使用相对布局并在该线性布局内。
并使用 margin 属性。
就您而言..
您可以根据需要提供值。
Use relative layout and within that linear layout.
And use margin attribute.
In your case..
you can provide the value as you need.
尝试 FrameLayout
编辑: 来自网站:
Try out FrameLayout
Edit: From the site:
您可以使用以下内容:
You can use the following: