我有一个本地化为-pl的图像。
所以,我自然有一个drawable / aboutimage.png和一个drawable-pl / aboutimage.png
这很奇妙,直到我将视图切换到一个快速的片段视图寻呼机而不是列表视图。有趣的是,它只是拒绝在Android 2.2上显示。 2.3甚至4.0它显示得很好。
我的xml在此过程中没有改变:
<ImageView
android:id="@+id/routine_about_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="10dp"
android:src="@drawable/aboutimage" />
我只是通过Fragment的onCreateView中的LayoutInflater.inflate()加载布局:
View v = null;
LayoutInflater vi = inflater;
v = vi.inflate(R.layout.routine_exercise_about_item, null);
有什么想法吗?