例如我有这样的代码:
String[] values = new String[] { "Text1", "Text2", "Text3",
"Text4", "Text5", "Text6", "Text7", "Text8",
"Text9", "Text10" };
String[] subvalues = new String[] {"subtext1", "subtext2", "subtext3", "subtext4",
"subtext5", "subtext6", "subtext7", "subtext8", "subtext9", "subtext10"};
ArrayAdapter<String> adapter = new ArrayAdapter<String>(
this,
R.layout.rawlayout,
R.id.phone_number,
values);
setListAdapter(adapter);
此示例使用 values 数组中的值填充 TextView R.id.phone_number。但是我有另一个 textView R.id.date_time ,我想用 subvalues 数组中的值填充它。
我应该如何修改我的代码以实现我的目标?