我正在开发一个应用程序,我在其中提供对多种语言的支持,但在 ImageView 中用于内容描述
<ImageView
android:id="@+id/imgSomeID"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_marginBottom="1dip"
android:layout_marginLeft="1dip"
android:adjustViewBounds="true"
android:contentDescription="@string/imgDescription"
android:src="@drawable/img_selector">
问题
是否需要所有语言的内容描述?
如果不提供内容描述(保持与英语、美国语言环境相同)会怎样?
将英语与当地语言混合使用是否正确,例如
Hello 세계 (Korean)
=>Hello World
?
我是开发多语言应用程序的新手,所以请帮助新手..