我是Android的初学者。我使用 Eclipse 来编写我的应用程序。当我创建一个 .xml 类并想设置按钮的特定位置时,我使用以下代码,例如:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/fm"
android:baselineAligned="false"
android:gravity="end" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollX="100dp"
android:scrollY="30dp"
android:text="@string/edad" />
</RelativeLayout>
...但什么也没有发生。它将按钮设置在角落。我怎样才能让它出现在其他地方?