首先抱歉,如果问题标题不清楚,我想不出如何简洁地表达它。
我有一个具有基本数据库功能的应用程序,可以将一个人的姓名、出生日期和工作类型添加到数据库中。作业类型是从 XML 资源文件中的字符串数组填充的微调器中选择的;
<string-array name="job_type_array">
<item>Job 1</item>
<item>Job 2</item>
<item>Job 3</item>
...
</string-array>
在数据库中,作业名称未存储,它在字符串数组中的位置被存储(即“作业 1”保存为整数 0 等)
然后当我在 listView 中显示数据库的内容时,我想显示实际的工作而不是它的位置,但我不知道该怎么做。
我用于 listView 的代码来自 Android Developers 示例;
public class PersonList extends ListActivity {
private static final int ACTIVITY_CREATE=0;
private static final int ACTIVITY_EDIT=1;
private static final int INSERT_ID = Menu.FIRST;
private static final int DELETE_ID = Menu.FIRST + 1;
public String[] mTypeArray;
public List typeList;
private PersonDbAdapter mDbHelper;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.horses_list);
mDbHelper = new PersonDbAdapter(this);
mDbHelper.open();
mTypeArray = getResources().getStringArray(R.array.job_type_array);
typeList = Arrays.asList(mTypeArray);
fillData();
registerForContextMenu(getListView());
}
private void fillData() {
// Get all of the rows from the database and create the item list
Cursor personCursor = mDbHelper.fetchAllPeople();
startManagingCursor(personCursor);
// Create an array to specify the fields we want to display in the list (only Name and job)
String[] from = new String[]{PersonDbAdapter.KEY_NAME, PersonDbAdapter.KEY_TYPE};
// and an array of the fields we want to bind those fields to
int[] to = new int[]{R.id.rowPersonName, R.id.rowPersonJobType};
// Now create a simple cursor adapter and set it to display
SimpleCursorAdapter people =
new SimpleCursorAdapter(this, R.layout.people_row, peopleCursor, from, to);
setListAdapter(people);
}
游标 fetchAllPeople 只是获取数据库中每个人的所有数据。
我的问题是;如何显示实际工作,而不仅仅是存储在数据库中的职位。任何帮助,将不胜感激。
编辑:整洁的代码