我正在进行设计并对其进行测试:
- 银河 Nexus 3
- 三星Galaxy S3
似乎 S3 在一些相关布局命令中表现不佳,例如:
- Layout_toStartOf
- Layout_toEndOf
简化问题如下:
代码
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/button1"
android:layout_toEndOf="@id/button1"
android:text="Button" />
</RelativeLayout>
图片
- 在编辑器和 Nexus 3 上
- 在三星 S3 上
由于我经常使用缩放和相互关联的图片,因此此功能非常重要。
如果有人可以与我分享他们的经验,我将不胜感激。
谢谢
编辑:错别字