Android listpreference - 获取值

时间:2011-01-21 16:23:12

标签: android listpreference

我有listpreference。无论我如何在这里复制代码,它似乎都是错误的,所以我只是复制它的问题:

string-array name="listArray"
items: Mercedes, Audi, Porsche

string-array name="listValues"
items: car1, car2, car3

我在listpreference部分的preferences.xml中有这段代码:

 <ListPreference
          android:title="List Preference"
          android:summary="This preference allows to select an item in a array"
          android:key="listPref"
          android:defaultValue="digiGreen"
          android:entries="@array/listArray"
          android:entryValues="@array/listValues" />

这是我想用以下内容获取所选项目的代码:

   String listpref = preferences.getString("listPref", "n/a"); 
   Toast.makeText(TutorialPref.this, "Chosen item of ListPref:" + listpref, Toast.LENGTH_LONG).show();

问题是,它返回的值不是项目。因此,如果我选择梅赛德斯,我得到的值是“car1”。

我怎样才能获得“梅赛德斯”?

2 个答案:

答案 0 :(得分:5)

您可以创建一个地图,其中数组值为键,数组条目为值:

private Map<String,String> cars = new HashMap<String, String>();

 if (cars.isEmpty()) {
    String[] carNames = getResources().getStringArray(R.array.listArray);
    String[] carIds = getResources().getStringArray(R.array.listValues);
    for (int i = 0; i <  carIds.length; i++) {
    cars.put(carIds[i], carNames[i]);
    }
 }

在祝酒词中,使用cars.get(listpref)

检索汽车名称

答案 1 :(得分:5)

您只需要在条目

中将相同的数组放在entryValues中
android:entryValues="@array/listArray"