0

我是 XML 新手,正在尝试开发一个 android XML 文件。这里的问题是我无法从其他地方移动按钮。或 edittext 都不是,尽管我尝试过android:layout_x="50dp"or android:layout_y="50dp"。如何将此按钮和编辑文本移动到其他地方?

 <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" 
        android:background="@drawable/yeni">

        <EditText
            android:id="@+id/editText1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:ems="10" android:text="">



        </EditText>

        <Button
            android:id="@+id/button1"
            android:layout_width="100dp"

            android:layout_height="wrap_content"
            android:layout_x="50dp"
             android:layout_y="50dp"
            android:text="YAP" />


    </LinearLayout>
4

1 回答 1

0

您应该使用android:gravity="<someOption>"andandroid:layout_gravity="<someOption>"对齐小部件。

但对于更复杂的控制,我建议您使用<RelativeLayout>它提供更复杂的小部件对齐工作。

于 2012-06-18T20:08:55.243 回答