我不知道为什么,但布局在带有 Api 11+ 的设备上显示得很好,不适合较旧的设备。
这是xml:
<LinearLayout
android:id="@+id/workers_linearlayout"
android:layout_width="50dp"
android:layout_height="70dp"
android:layout_weight="1" >
<RelativeLayout
android:id="@+id/workers_relative_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@drawable/workers_small" />
<ImageView
android:id="@+id/imageView3"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:scaleX="0.5"
android:scaleY="0.5"
android:src="@drawable/ic_cerchio_rosso"
android:translationX="25dp"
android:translationY="-20dp" />
<TextView
android:id="@+id/workers_number"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="9"
android:textAppearance="?android:attr/textAppearanceMedium"
android:translationX="25dp"
android:translationY="-20dp" />
</RelativeLayout>
</LinearLayout>
这是 API 11+ 上的结果:
这在 API 10-上:
我试着用布局来修复它,我可以获得一个很好的结果,但从来没有像第一个那样。
有人能帮我吗?
编辑:
设备上的照片:
编辑2
三角警告是:
- 字符串“9”应该使用字符串资源
- ImageView1 和 3:缺少内容描述属性
- RelativeLayout 或者它的父级可能没用
- 嵌套权重不利于性能
顺便说一句,我认为这些都不能解决我的问题