0

首先抱歉,如果问题标题不清楚,我想不出如何简洁地表达它。

我有一个具有基本数据库功能的应用程序,可以将一个人的姓名、出生日期和工作类型添加到数据库中。作业类型是从 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 只是获取数据库中每个人的所有数据。

我的问题是;如何显示实际工作,而不仅仅是存储在数据库中的职位。任何帮助,将不胜感激。

编辑:整洁的代码

4

2 回答 2

1

我假设TextView您要放置职位的行布局中的 (?!?) 是具有 id 的视图R.id.rowHorseType(在to数组中,我还假设PersonDbAdapter.KEY_TYPE表示光标中具有作业 int 值的列)。在这种情况下,您将使用 aSimpleCursorAdapter.ViewBinder将存储在数据库中的职位int值转换为实际职位,如下所示:

people.setViewBinder(new SimpleCursorAdapter.ViewBinder() {

            @Override
            public boolean setViewValue(View view, Cursor cursor,
                    int columnIndex) {
                if (view.getId() == R.id.rowHorseType) {
                    int jobInt = cursor.getInt(columnIndex);
                    ((TextView) view).setText(mTypeArray[jobInt]); // if the view with the id R.id.rowHorseType is a TextView!!!
                    return true;
                }
                return false;
            }
        });
于 2012-07-31T13:15:55.047 回答
0

如果您想从您应该使用的数据库中获取数据,我无法正确获取您:

Cursor previous_repotData = getdataBaseRecord();
Stirng stdate = getString(previous_repotData.getColumnIndexOrThrow("startDate"))); 
于 2012-07-31T12:48:05.143 回答