0

我在程序中动态创建对象并从 array.xml 填充它们。在 array.xml 中,我有一系列工具和值,我需要将它们加载到每个项目的类值中。

这是我在课堂上的内容;

public class ToolImporter extends Application{

public static Tool[] tools;
private String[] aTool;
private int i;

public ToolImporter() {

    aTool = getResources().getStringArray(R.array.tools); //null pointer?

    // TODO Auto-generated constructor stub
}

这是我的array.xml;

    <array name="tools">
        <item name="SAW">
            <id>1</id>
            <image>R.drawable.image_saw100x60px</image>
            <boxX>100</boxX>
            <boxY>100</boxY>
            <worktopX>200</worktopX>
            <worktopY>200</worktopY>
        </item>
        <item name="SCREWDRIVER">
            <id>2</id>
            <image>R.drawable.image_screwdriver100x60px</image>
            <boxX>150</boxX>
            <boxY>100</boxY>
            <worktopX>250</worktopX>
            <worktopY>200</worktopY>
        </item>
        <item name="HAMMER">
            <id>3</id>
            <image>R.drawable.image_hammer100x60px</image>
            <boxX>200</boxX>
            <boxY>100</boxY>
            <worktopX>300</worktopX>
            <worktopY>200</worktopY>
        </item>
    </array>

但是,它会在“//null 指针?”上抛出一个空指针?线。任何人都可以就我在导入它时做错了什么提供建议吗?

4

3 回答 3

1

根据这篇文章

除非触发了 onCreate() 回调,否则不应调用 getResources()。

public class StackStackActivity extends Activity 
{

    String[] myArray = getResources().getStringArray(R.array.glenns); // This returns null

    public StackStackActivity()
    {

        myArray = getResources().getStringArray(R.array.glenns); // This returns null also
    }

    @Override
    public void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        myArray = getResources().getStringArray(R.array.glenns); // Returns an array from resources
    }
}
于 2012-12-17T18:22:58.620 回答
1

在 Application 类中创建字段变量,然后在主活动类的 onCreate 方法中初始化它们。

于 2012-12-17T18:27:52.207 回答
0

在 ToolImporter 类中创建一个“上下文”字段。将您的活动的上下文传递给 ToolImporter 构造函数中的 ToolImporter 类。

使用上下文字段访问 getResources()

aTool = context.getResources().getStringArray(R.array.tools); 
于 2012-12-17T18:37:25.740 回答