2013-07-16 45 views
0

所以我正在爲我的android應用程序的登錄和註冊頁面工作,我試圖讓這個佈局實現,但我無法讓它正常工作。Android的佈局問題

我期待的佈局是這個。

desired layout

背景圖像覆蓋整個屏幕,然後有右上方的按鈕並且在底部中間的按鈕。

但是,這是我從實現設計

current layout

了,這是我在佈局文件中寫下

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" android:fitsSystemWindows="true" android:alwaysDrawnWithCache="false" 
    android:layout_gravity="center"> 

    <ImageView 
     android:id="@+id/imageView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:scaleType="center" 
     android:layout_alignParentTop="true" android:src="@drawable/nyork2"/> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:gravity="top" > 

     <Button 
     android:id="@+id/register" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:gravity="left" 
     android:text="@string/button_register" 

     /> 
    <Button 
     android:id="@+id/login" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:gravity="left" 
     android:text="@string/button_login" 

     /> 
    </LinearLayout> 





</RelativeLayout> 

回答

2

這應該有幫助

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" android:fitsSystemWindows="true" android:alwaysDrawnWithCache="false" 
    android:layout_gravity="center"> 

    <ImageView 
     android:id="@+id/imageView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:scaleType="center" 
     android:layout_alignParentTop="true" android:src="@drawable/nyork2"/> 
    <Button 
      android:id="@+id/register" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentTop="true" 
      android:layout_alignParentRight="true" 
      android:text="@string/button_register" /> 

    <Button 
      android:id="@+id/login" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:layout_centerHorizontal="true" 
      android:text="@string/button_login"/> 

</RelativeLayout> 
+0

謝謝你。這是正確的答案。另外我只是意識到,在Eclipse中,實際上可以拖動組件。 –

+0

沒問題!保持良好的工作! –

0

刪除線性佈局,所以你可以把按鈕,你想他們是