自定义视图访问中的Android NullPointerException

时间:2012-10-16 13:32:24

标签: android android-layout nullpointerexception custom-view

我创建了一个自定义视图名称 StepView 。这是StepView的代码。

public class StepView extends LinearLayout {

    private Context cont;
    private LinearLayout stepHolder;

    public StepView(Context context, AttributeSet attrs) {
        super(context);
        // TODO Auto-generated constructor stub
        LayoutInflater.from(context).inflate(R.layout.stepview, this, true);
        stepHolder = (LinearLayout) findViewById(R.id.stepHolder);

        cont = context;
    }

    public void addStep(String title, int drawableId, View.OnClickListener stepAction){

        View step = LayoutInflater.from(cont).inflate(R.layout.step, this, true);
        TextView txtText = (TextView) step.findViewById(R.id.txtText);
        ImageView imgStep = (ImageView) step.findViewById(R.id.imgStep);

        txtText.setText(title);
        imgStep.setImageResource(drawableId);

        stepHolder.addView(step);
    }


}

这是stepview.xml的代码。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <LinearLayout
        android:id="@+id/stepHolder"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal" >

    </LinearLayout>

</LinearLayout>

step.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ImageView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/imgStep"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/txtText">

    </TextView>

</LinearLayout>

现在我在主布局中使用了XML。

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="horizontal" >
 ..................
     </LinearLayout>

    <com.orthokeys.view.StepView
        android:id="@+id/stepMenu"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >
    </com.orthokeys.view.StepView>

</merge>

我已经知道它出现得很好。但是当我添加以下代码时,它会给出NullPointerException。

StepView stepMenu = (StepView) findViewById(R.id.stepMenu);
stepMenu.addStep("Picture", R.drawable.step01, null);

我已检查过stepMenu是否为空。

我的代码中的问题是什么?

2 个答案:

答案 0 :(得分:3)

我解决了问题...更改StepView类

的构造函数中的代码
public StepView(Context context, AttributeSet attrs) {
  super(context, attrs);
  ....................
}

答案 1 :(得分:0)

您没有显示出现错误的完整代码块,但您可能忘记使用setContentView(R.layout.main_layout);来设置正在使用的布局。