0

我从Catch The Cows下载了一个,它类似于 Google Map 对象,或者至少这就是我使用它的目的。

它解析一个 XML 文件,其中列出了应该可以触摸的屏幕区域,然后使用此方法创建它们。 这是上下文,我已经注释掉了一些代码部分,并添加了我自己的代码来尝试解决我的问题

private Area addShape( String shape, String name, String coords, String id) {   
        Log.v("IDS:", "id was "+id);
        Area a = null;
        String rid = id.replace("@+id/", "");
        Log.v("IDS:", "rid was "+rid);

        // Generate a new ID for the area.
        int _id = 1;
        View vi = findViewById(_id);
        while (vi!=null) {
            _id++;
            vi = findViewById(_id);
        }

                //View.generateViewId(); //=0;
        Log.v("IDS:", "After conversion final time "+_id);
        /*
        try {
            Class<R.id> res = R.id.class;
            Field field = res.getField(rid);    // eg. rid = area10
            _id = field.getInt(null);
            Log.v("IDS:", "After conversion "+_id);
        }
        catch (Exception e) {
           _id = 0;
           Log.e("Exception ",e.getMessage());
        } finally {
            Log.v("IDS:", "After conversion final time "+_id);
        }
        */
        if (_id != 0) {
            if (shape.equalsIgnoreCase("rect")) {
                String[] v = coords.split(",");
                if (v.length == 4) {
                    a = new RectArea(_id, name, Float.parseFloat(v[0]),
                            Float.parseFloat(v[1]),
                            Float.parseFloat(v[2]),
                            Float.parseFloat(v[3]));
                }
            } 
            if (shape.equalsIgnoreCase("circle")) {
                String[] v = coords.split(",");
                if (v.length == 3) {
                    a = new CircleArea(_id,name, Float.parseFloat(v[0]),
                            Float.parseFloat(v[1]),
                            Float.parseFloat(v[2])
                            );
                }
            } 
            if (shape.equalsIgnoreCase("poly")) {               
                a = new PolyArea(_id,name, coords);                     
            } 
            if (a != null) {
                addArea(a);
            }
        } else {
            Log.v("Loading ID: ","_id was 0");
        }
        return a;
    }

不幸的是,屏幕上没有呈现任何内容,这是因为 _id = 0。这应该使用以下代码进行更改:

   try {
                Class<R.id> res = R.id.class;
                Field field = res.getField(rid);    // eg. rid = area10
                _id = field.getInt(null);
            }

我如何不确定尝试和调试它会做什么,谁能解释这个片段在做什么?

4

1 回答 1

1

R 是一个只读类。它是在编译时生成的,您不应使用反射来修改其字段。此外,您应该避免反射来访问字段值。您应该使用官方 API。

类第一行的评论是

/* AUTO-GENERATED FILE.  DO NOT MODIFY. */ 
于 2013-07-30T12:41:59.243 回答