2012-10-18 78 views
0

我是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> 

...但沒有任何反應。它將按鈕設置在一個角落。我怎樣才能讓它出現在其他地方?

+0

嘗試在詢問之前閱讀文檔。 http://developer.android.com/guide/topics/ui/layout/relative.html – toadzky

回答

0

你需要使用

android:layout_marginRight 
android:layout_marginLeft 
android:layout_marginTop 
android:layout_marginBottom 
0

你應該點擊按鈕並轉到屬性。這就是不同定位設置的位置。 例如下面:@ + id/VIEW然後設置marin top:10dip。這將使您按鈕10在VIEW下方傾斜。

0
<Button 
android:id="@+id/button1" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 

android:layout_marginLeft="100dp" 
android:layout_marginTop="30dp" 
android:text="@string/edad" />