这是此处 SO Q的延续,但我仍然缺少一些东西。
我不知道如何获取从 JSONObject 映射出的项目以用于列表视图。HashMap 键值为:
map.put(TAG_RES_FILE, resFile);
我想把那个字符串放到我的onItemClick(){int passResFile = getResources().getIdentifier(TAG_RES_FILE, "raw", "com.andaero.app");}
我认为通过将标签名称放入下面的方法中,系统会自动将其从该项目位置拉出 - 显然不是。那么它是如何获得的呢??谢谢。
编辑:我添加了一个 log.i() 来查看单击位置内的值并返回:
getIdentifier(11925): {isRawRes=true, title=Advisory Circulators, label=AC, _id=1, resFile=advisory_circulators_sort_list, description=提供遵守法规和要求的方法、程序和实践等指导。, containerID=R .id.listContainer}
这是
resFile=advisory_circulators_sort_list
这就是我需要得到的 - 我该怎么做?
这是整个听众:
public void onItemClick(AdapterView<?> parent, View view, int pos, long id) {
MainActivity.mLayout.toggleSidebar();
setHasOptionsMenu(true);
FragmentManager fm = getFragmentManager();
final FragmentTransaction lcFT = fm.beginTransaction();
lcFT.setCustomAnimations(R.anim.slide_in, R.anim.hyperspace_out, R.anim.hyperspace_in, R.anim.slide_out);
final Bundle args = new Bundle();
Object o = lv.getItemAtPosition(pos);
String resFile = (String) o.toString();
int passResFile = getResources().getIdentifier(TAG_RES_FILE, "raw", "com.andaero.app");
args.putInt("KEY_RES_FILE", passResFile);
boolean isRawRes = true;
args.putBoolean("KEY_IS_RAW_RES", isRawRes);
Log.i("getIdentifier", resFile );
// Delayed to improve animations
final Handler handler = new Handler();
handler.postDelayed(new Runnable() {
public void run() {
ListViewFragment lvf = new ListViewFragment();
lcFT.replace(R.id.listContainer, lvf).commit();
lvf.setArguments(args);
}
}, 300);
}