0

私は XML が初めてで、Android XML ファイルを開発しようとしています。ここでの問題は、別の場所からボタンを移動できないことです。または、編集テキストもどちらも試しませんでしたが、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>"とを使用する必要があります。android:layout_gravity="<someOption>"

<RelativeLayout>しかし、より複雑な制御については、ウィジェットの整列でより複雑な作業を提供する使用をお勧めします。

于 2012-06-18T20:08:55.243 に答える