我有一个本地化到 -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);
有什么想法吗?