如果有可能,我怎麼能加我被分配到我的SimpleCursorAdapter(「ondemandandautomatic_authorize」)佈局上方的「頭」,和ListView控件下方的按鈕?我可以在佈局/合併佈局中使用佈局嗎?
SimpleCursorAdapter mAdapter = new SimpleCursorAdapter(this,
R.layout.ondemandandautomatic_authorize, mContacts,
new String[] { ContactsContract.Contacts.DISPLAY_NAME },
new int[] { R.id.contactLabel });
setListAdapter(mAdapter);
我有什麼在我的活動現在顯示爲:
<AppName>
<ckbx1><ckbx2><ckbx3><TextView (ContactName)>
...(repeating the line above for each contact)
但我想要的是:
<AppName>
<TextView1><TextView2><TextView3><TextView4>
<ckbx1> <ckbx2> <ckbx3> <TextView (ContactName)>
...(repeating the line above for each contact)
<Button>
可能嗎?
我猜「viewtobededded」可以是一個ViewGroup,所以我可以將所有這些小部件放入它? – 2012-02-10 15:09:54