0
所以我正在爲我的android應用程序的登錄和註冊頁面工作,我試圖讓這個佈局實現,但我無法讓它正常工作。Android的佈局問題
我期待的佈局是這個。
背景圖像覆蓋整個屏幕,然後有右上方的按鈕並且在底部中間的按鈕。
但是,這是我從實現設計
了,這是我在佈局文件中寫下
<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>
謝謝你。這是正確的答案。另外我只是意識到,在Eclipse中,實際上可以拖動組件。 –
沒問題!保持良好的工作! –