我有我的微調代碼。其中包括標題和副標題和圖像。翻譯字符串在xml不起作用
public class Gold extends Activity implements OnClickListener, AdapterView.OnItemSelectedListener{
String[] strings = {"Gold", "Sliver"};
String[] subs = {"Gold 24 India"};
int arr_images[] = { R.drawable.gold24};
...
public View getCustomView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater=getLayoutInflater();
View row=inflater.inflate(R.layout.row, parent, false);
TextView label=(TextView)row.findViewById(R.id.SelectUnits);
label.setText(strings[position]);
TextView sub=(TextView)row.findViewById(R.id.sub);
sub.setText(subs[position]);
ImageView icon=(ImageView)row.findViewById(R.id.image);
icon.setImageResource(arr_images[position]);
return row;
我加入翻譯strings.xml中,但它不工作。
我的問題是我該如何添加翻譯到這種字符串方法?
在此先感謝。
退房國際化和本地化的Android – keyser