我有一个 normal-hdpi-480x800 布局,其中包括按钮和类似的图形。我主要使用RelativeLayout,因为建议使用它以获得更好的性能,并且将我的元素从左上边界相对放置。根据screens_support.html,该组可能还包括600x1024 分辨率的设备。所以,当我在同样属于 normal-xhdpi 的 LG L9 (540x960) 上测试应用程序时,它看起来很糟糕——使用像素和 dp 似乎没有区别。这是一个代码示例:
<Button
android:id="@+id/fb_post_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/share_fb_m_l"
android:layout_marginTop="@dimen/share_fb_m_t"
android:background="@drawable/fb_btn" />
有什么帮助吗?我可能做错了什么?
谢谢。