我花了最后几天尝试进行布局。
它们的布局在我的 480x800 屏幕手机上看起来很棒,但在我的 540x960 屏幕手机上却一团糟。
我使用 dp 期望它会按密度缩放。
出了什么问题?
这是我的布局 xml 代码。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="15dip"
android:background="@drawable/gshock5">
<TextView
android:id="@+id/widgetday"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="50dip"
android:layout_marginTop="95sp"
android:layout_centerInParent="true"
android:text="DAY"
android:textColor="#003300"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textStyle="bold"/>
<TextView
android:id="@+id/widget1label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/widgetday"
android:layout_centerHorizontal="true"
android:clickable="true"
android:textColor="#003300"
android:text="Error"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textStyle="bold"/>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="210dip">
<Button android:text="Click Me!"
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</RelativeLayout>
</RelativeLayout>