我是Android的初學者。我使用Eclipse來編程我的應用程序。當我創建一個.xml類,我想設置一個按鈕的特定位置,我用這個代碼,例如:在relativelayout中的對象的位置
<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>
...但沒有任何反應。它將按鈕設置在一個角落。我怎樣才能讓它出現在其他地方?
嘗試在詢問之前閱讀文檔。 http://developer.android.com/guide/topics/ui/layout/relative.html – toadzky