我希望Buttons
在同一行上彼此相邻,我希望在Button
旁边有一个EditText
。
我有Eclipse插件,所以我既有图形布局,也有文本。我无法发布图片,但我会对其进行描述:它有两个TextViews
(不相关),后跟一个EditText
,然后是一个小的未标记的Button
on下一行。接下来的四行是标有Turn N,Turn E,Turn S和Turn W的按钮。
因此,EditText
旁边是我想要无标题Button
的地方,我想要在指南针中设置N,E,S,W Buttons
- 喜欢时尚。但是,当我尝试在GUI上拖动它们时,它会将它们绑定到行上,每当我尝试更改布局时,它都会影响所有内容,而不是只影响我右键单击的一个对象。
我该如何解决这个问题?
答案 0 :(得分:1)
这样的事情:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="TextView" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@id/textView1"
android:text="TextView" />
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@id/textView2"
android:layout_toLeftOf="@+id/button1" >
</EditText>
<Button
android:id="@id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@id/textView2"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/editText1"
android:layout_centerHorizontal="true"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/button2"
android:layout_toLeftOf="@id/button2"
android:text="Button" />
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/button2"
android:layout_toRightOf="@id/button2"
android:text="Button" />
<Button
android:id="@+id/button5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/button4"
android:layout_toLeftOf="@id/button4"
android:text="Button" />
</RelativeLayout>
答案 1 :(得分:0)
如果没有xml,我真的不能说它,但是如果你想按照类似于compas的方式定位按钮,你应该尝试创建方形相对布局,将按钮放到它上面,然后在顶部,左边放置按钮,父母的右边和底部