1

这是此处 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);
                }
4

2 回答 2

1

所以我继续将项目发送到 textView 并将其可见性设置为在布局文件中消失。这很好用,但我希望有一种更好/更清洁的方法。

在 onItemClick() 方法中更改为:

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);

对此:

String resFile = ((TextView) view.findViewById(R.id.listResFile)).getText().toString();
int passResFile = getResources().getIdentifier(resFile, "raw", "com.andaero.app");
args.putInt("KEY_RES_FILE", passResFile);
于 2012-06-13T00:31:16.567 回答
0

TAG_RES_FILE 没有在这个方法中声明,所以它可能是一个常量。为了证明它是正确的,尝试调试这个方法,看看它是否按照你的预期改变。

事实上,在整个方法中,您甚至都不会查看最终用户单击了哪个项目,而不是通过视图的标签,也不是通过项目的位置。我也没有看到你所说的地图的任何用法。

于 2012-06-12T20:55:31.523 回答