addView导致NullPointerException异常 [英] addView causes NullPointerException

查看:350
本文介绍了addView导致NullPointerException异常的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

美好的一天!
我实施aChartEngine借鉴Android的图表,并面临着一个烦恼:我收到NullPointerException异常时添加尝试创建图表视图与addView的方法来布局

Good day! I'm implementing aChartEngine to draw charts on Android and have faced with a trouble: I receive NullPointerException when try to add created chart view to layout with addView method.

chart_layout.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/charts_relative_layout"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <LinearLayout
        android:name="@+id/price_chart"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"/>
// other elements
</RelativeLayout>

Charts.java

Charts.java

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.chart_layout);
     //other code
}


protected void onResume() {
    super.onResume();

    if (chart_price == null) { 
    LinearLayout layout = (LinearLayout) findViewById(R.id.price_chart);
    chart_price = ChartFactory.getLineChartView(this, buildDataset(getTitles(), dateArray, priceArray), getRenderrer(paramList.get(0).length, paramList.get(1).length, maxPrice));          
    layout.addView(chart_price);    // THIS LINE CAUSES NULLPOINTEREXCEPTION
    }
    else {
      chart_price.repaint();
    }
 }

是什么想法,有什么可这个错误的原因是什么?

Are any ideas, what can be the reason of this error?

推荐答案

问题是在XML文件中。

The problem is in your xml file.

    android:name="@+id/price_chart"

    android:id="@+id/price_chart"

这篇关于addView导致NullPointerException异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆