自定义组件类方法在调用时抛出错误

时间:2012-07-31 23:38:38

标签: android android-layout custom-component

我在layout / XML中创建了一个自定义组件,它有2个TextView和2个按钮。 在它的支持类中,我只需要按钮递增并递减其中一个TextViews的值

public class NumberStepper extends LinearLayout implements View.OnClickListener {

//Define the elements (Children) of the compound view
public TextView tvStepperName, tvStepperValue;
public Button btnIncrement, btnDecrement;

private int statValue;
public NumberStepper(Context context, AttributeSet attrs) {
    super(context, attrs);
    //tvStepperName.setText(name);
    statValue = 0;

    LayoutInflater inflater = LayoutInflater.from(context);
    inflater.inflate(R.layout.numberstepper, this);
    loadComponents();

    }
private void loadComponents(){
    tvStepperName = (TextView) findViewById(R.id.tvStepperName);
    tvStepperValue = (TextView) findViewById(R.id.tvStepperValue);
    btnIncrement = (Button) findViewById(R.id.btnIncrement);
    btnDecrement = (Button) findViewById(R.id.btnDecrement);

    btnIncrement.setOnClickListener(this);
    btnDecrement.setOnClickListener(this);

    tvStepperValue.setText("" + statValue);

}

public void setLabel(String str){
    tvStepperName.setText(str);
}
public void onClick(View v) {
    switch(v.getId()){
    case R.id.btnIncrement:
            statValue++;
            tvStepperValue.setText("" + statValue);
            tvStepperName.setText("HELLO");
        break;
    case R.id.btnDecrement:
        if(statValue > 0){
            statValue--;
        }
        tvStepperValue.setText("" + statValue);
        break;
    }

}

}

接下来,我创建了另一个XML布局,其中包含5个或6个这些复合组件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<com.nsholmes.bballStats.componets.NumberStepper
    android:id="@+id/ccOne"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"></com.nsholmes.bballStats.componets.NumberStepper>
<com.nsholmes.bballStats.componets.NumberStepper
    android:id="@+id/ccTwo"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"></com.nsholmes.bballStats.componets.NumberStepper>

在这个布局的支持类(扩展Activity)中,我设置了复合组件变量setContentView(),并尝试以下方法:

ccOne = (NumberStepper)findViewById(R.id.ccOne);
    ccOne.setLabel("Label Name");

我收到错误声明 - 无法启动活动ComponentInfo)。我在调用setLabel()时只收到此错误。

07-31 17:54:25.657:E / AndroidRuntime(11454):致命异议:主要
07-31 17:54:25.657:E / AndroidRuntime(11454):java.lang.RuntimeException:无法启动活动ComponentInfo {com.nsholmes.bballStats / com.nsholmes.bballStats.games.Game}:java.lang.NullPointerException
07-31 17:54:25.657:E / AndroidRuntime(11454):在android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1970)
07-31 17:54:25.657:E / AndroidRuntime(11454):在android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1995)
07-31 17:54:25.657:E / AndroidRuntime(11454):在android.app.ActivityThread.access $ 600(ActivityThread.java:128)
07-31 17:54:25.657:E / AndroidRuntime(11454):在android.app.ActivityThread $ H.handleMessage(ActivityThread.java:1161)
07-31 17:54:25.657:E / AndroidRuntime(11454):在android.os.Handler.dispatchMessage(Handler.java:99)
07-31 17:54:25.657:E / AndroidRuntime(11454):在android.os.Looper.loop(Looper.java:137)
07-31 17:54:25.657:E / AndroidRuntime(11454):在android.app.ActivityThread.main(ActivityThread.java:4514)
07-31 17:54:25.657:E / AndroidRuntime(11454):at java.lang.reflect.Method.invokeNative(Native Method)
07-31 17:54:25.657:E / AndroidRuntime(11454):at java.lang.reflect.Method.invoke(Method.java:511)
07-31 17:54:25.657:E / AndroidRuntime(11454):at com.android.internal.os.ZygoteInit $ MethodAndArgsCaller.run(ZygoteInit.java:790)
07-31 17:54:25.657:E / AndroidRuntime(11454):at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:557)
07-31 17:54:25.657:E / AndroidRuntime(11454):at dalvik.system.NativeStart.main(Native Method)
07-31 17:54:25.657:E / AndroidRuntime(11454):引起:java.lang.NullPointerException 07-31 17:54:25.657:E / AndroidRuntime(11454):at com.nsholmes.bballStats.games.Game.loadComponents(Game.java:34)
07-31 17:54:25.657:E / AndroidRuntime(11454):at com.nsholmes.bballStats.games.Game.onCreate(Game.java:27)
07-31 17:54:25.657:E / AndroidRuntime(11454):在android.app.Activity.performCreate(Activity.java:4465)
07-31 17:54:25.657:E / AndroidRuntime(11454):在android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1053)
07-31 17:54:25.657:E / AndroidRuntime(11454):在android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1934)
07-31 17:54:25.657:E / AndroidRuntime(11454):... 11 more

任何帮助将不胜感激,谢谢 这是numbertepper的完整布局          

<TextView
    android:id="@+id/tvStepperName"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="FreeThrow"
    android:layout_weight="10" />

<Button
    android:id="@+id/btnIncrement"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="30"
    android:text="@string/plusSign" />"

<Button
    android:id="@+id/btnDecrement"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="30"
    android:text="@string/minusSign" />

<TextView
    android:id="@+id/tvStepperValue"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="2"
    android:layout_weight="30" />


</LinearLayout>

2 个答案:

答案 0 :(得分:1)

你的一个findViewById调用返回null,这可能发生在以下几行(你没有发布完整的布局和代码,所以我在这里盲目拍摄):

ccOne = (NumberStepper)findViewById(R.id.ccOne);

tvStepperName = (TextView) findViewById(R.id.tvStepperName);

编辑:

现在我们看到您的完整堆栈跟踪错误位于loadComponents函数的第34行。您在NumberStepper上调用findViewById来查找R.id.tvStepperName和R.id.tvStepperValue,您确定View在布局xml中的NumberStepper中有{{1}}个吗?

答案 1 :(得分:1)

问题可能在于您尝试查找视图的方式。据我了解,findViewById(..)基于setContentView(..)工作,并且由于您的类中没有设置内容视图,因此返回的视图为空。

也许你可以尝试从膨胀的视图中找到TextView。

.....
private int statValue;
private View mView;

public NumberStepper(Context context, AttributeSet attrs) {
    super(context, attrs);
    //tvStepperName.setText(name);
    statValue = 0;

    LayoutInflater inflater = LayoutInflater.from(context);
    mView = inflater.inflate(R.layout.numberstepper, this);
    loadComponents();

}

private void loadComponents(){
    tvStepperName = (TextView) mView.findViewById(R.id.tvStepperName);
    tvStepperValue = (TextView) mView.findViewById(R.id.tvStepperValue);
    btnIncrement = (Button) mView.findViewById(R.id.btnIncrement);
    btnDecrement = (Button) mView.findViewById(R.id.btnDecrement);
.....
}
.....
.....