TextView上的NPE

时间:2012-02-25 08:26:04

标签: android xoom

再一次,我感到难过......下面的代码在SDK和我的Galaxy Nexus(运行4.0.1)的Android 2.2模拟器中运行良好,但是在Xoom上运行应用程序时我获得了NPE(Android 3.2) )。

    final TextView resNum = (TextView) findViewById(R.id.resNum);
    System.out.println(resNum);
    resNum.setOnClickListener(new View.OnClickListener() {
        String num = resNum.getText().toString();
        public void onClick(View v) {
            Intent callIntent = new Intent(Intent.ACTION_DIAL);
            callIntent.setData(Uri.parse("tel:" + num));
            startActivity(callIntent);
        }
    });

以上是onCreate方法(当然还有其他方法)。

在resNum上执行'read'操作时会发生NPE,即println()。

由于

1 个答案:

答案 0 :(得分:0)

Xoom上没有拨号器。您可以找到更多详细信息in this article