我的微调器有这个代码。及其包括标题和副标题和图像。
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 的翻译,但它不起作用。
我的问题是如何为这种字符串方法添加翻译?
提前致谢。