我有一个自定义列表适配器,其中包含一个包含控件的布局。我想知道如何获得每个控件ID?我打算改变一些textview的颜色。
private void UpdateDisplay() {
// define the list which holds the information of the list
List<Map<String, Object>> resourceNames = new ArrayList<Map<String, Object>>();
// define the map which will hold the information for each row
Map<String, Object> data;
if (appts.size() > 0) {
for (int i = 0; i < appts.size(); i++) {
data = new HashMap<String, Object>();
data.put("apptListType", appts.get(i).getType().getName());
data.put("apptListTime", DateFormat.getTimeInstance(
DateFormat.SHORT).format(appts.get(i).getStartDate())
+ " - "
+ DateFormat.getTimeInstance(DateFormat.SHORT).format(
appts.get(i).getEndDate()));
data.put("apptListContactName", appts.get(i).getContact()
.getFullName());
data.put("apptListContactCompany", appts.get(i).getContact()
.getCompany());
resourceNames.add(data);
}
} else {
data = new HashMap<String, Object>();
data.put("apptListType", "No appointments found for today.");
data.put("apptListTime", "");
data.put("apptListContactName", "");
data.put("apptListContactCompany", "");
resourceNames.add(data);
}
apptDescription = new SimpleAdapter(this, resourceNames,
R.layout.apptlistitem, new String[] { "apptListType",
"apptListTime", "apptListContactName",
"apptListContactCompany" }, new int[] {
R.id.apptListType, R.id.apptListTime,
R.id.apptListContactName, R.id.apptListContactCompany });
ListView apptList = (ListView) findViewById(R.id.apptsList);
apptList.setAdapter(apptDescription);
apptList.setOnItemClickListener(AppointmentDailyView.this);
apptList.setItemsCanFocus(true);
这是我每个listitem的xml文件:
<?xml version="1.0" encoding="utf-8"?>
<TextView android:id="@+id/apptListType" android:textSize="20px"
android:textColor="#333" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:textStyle="bold" />
<TextView android:layout_below="@+id/apptListType" android:id="@+id/apptListTime"
android:textSize="15px" android:textColor="#666" android:layout_width="wrap_content"
android:layout_height="wrap_content" ></TextView>
<TextView android:layout_below="@+id/apptListTime" android:id="@+id/apptListContactName"
android:textSize="20px" android:textColor="#333" android:layout_width="wrap_content"
android:layout_height="wrap_content"></TextView>
<TextView android:layout_toRightOf="@+id/apptListContactName"
android:layout_below="@+id/apptListTime" android:id="@+id/apptListContactCompany"
android:textSize="15px" android:textColor="#666"
android:layout_height="wrap_content" android:layout_width="wrap_content"
android:paddingLeft="5px" android:layout_marginTop="3px"></TextView>
感谢任何帮助,谢谢。
答案 0 :(得分:2)
第1步:将SimpleAdapter
扩展到您自己的班级(此处称为MyAdapter
)
第2步:覆盖getView()
MyAdapter
步骤3:从super.getView()
链接到超类(即,呼叫getView()
),返回此行的View
步骤4:在行findViewById()
上调用View
以获取其中的小部件,并根据需要定制这些小部件
步骤5:从View
getView()
返回行MyAdapter
第6步:在使用MyAdapter
SimpleAdapter