我有一个LinearLayout,其方向为水平,并且希望在距离TextView特定距离处放置一个按钮,该怎么做。您是否可以发布教程链接,显示不同布局中不同小部件的位置。谢谢。
答案 0 :(得分:0)
Common Layout Objects | Android Developers非常有用,特别是如果你正在寻找更多示例性的东西。如果您正在寻找纯文档,那么一切都在这里:User Interface | Android Developers
对于间距对象,有很多选项,但最简单的方法是设置任一元素的边距:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="horizontal">
<TextView android:text="TextView"
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></TextView>
<Button android:id="@+id/button1"
android:layout_marginLeft="50dip"
android:text="Button"
android:layout_height="wrap_content"
android:layout_width="wrap_content"></Button>
</LinearLayout>