假设我Activity
的根布局中有背景。我希望在屏幕上放置一些按钮,这些按钮始终相对于屏幕位于同一位置。我怎样才能做到这一点?
我尝试使用dp
,sp
但如果我在另一个屏幕上测试布局,一切都会崩溃。(所以,如果它在WVGA中没问题,它在QVGA中不起作用。我做错了什么吗?
这是我的布局 xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/menu_activity_bg" >
<Button
android:id="@+id/continueButton"
android:layout_width="110sp"
android:layout_height="30sp"
android:layout_marginLeft="100sp"
android:layout_marginTop="180sp"
android:background="@drawable/menu_activity_continue" />
<Button
android:id="@+id/newGameButton"
android:layout_width="130sp"
android:layout_height="35dp"
android:layout_marginLeft="90sp"
android:layout_marginTop="220sp"
android:background="@drawable/menu_activity_new_game" />
<!-- ... -->
</RelativeLayout>