当前位置: 首页 > 知识库问答 >
问题:

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

商同化
2023-03-14

我在layout/XML中创建了一个自定义组件,它有两个文本视图和两个按钮。在它的支持类中,我只是让按钮递增和递减其中一个TextView的值

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;
    }

}

}

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

<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>

在此布局的支持类(扩展活动)中,我设置了复合组件变量setContentView(),并尝试以下操作:

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

我收到一个错误声明-无法启动活动组件信息)。我只有在调用setLabel()时才会出现此错误。

07-31 17:54:25.657: E/AndroidRuntime(11454): FATAL EXCEPTION: main
07-31 17:54:25.657: E/AndroidRuntime(11454):java.lang.Runtime异常:无法启动活动ComponentInfo{com.nsholmes.bball统计/com.nsholmes.bballStats.games.游戏}:java.lang.NullPointerExcture
07-31 17:54:25.657: E/Android Runtime(11454): atandroid.app.ActivityThread.perform启动活动(ActivityThread.java:1970)
07-31 17:54:25.657: E/Android Runtime(11454): atandroid.app.ActivityThread.handle启动活动(ActivityThread.java:1995)
07-31 17:54:25.657: E/Android Runtime(11454):在android.app.ActivityThread.access600美元(ActivityThread.java:128)
07-31 17:54:25.657:在android.app.ActivityThread$H. handleMessage(ActivityThread.java:1161)
07-31 17:54:25.657:在android.os.Handler.dispatchMessage(Handler.java:99)
07-3117:54:25.657: E/AndroidRuntime(11454):在android.os.Loop. cle(Loop. 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/Android Runtime(11454): at java. lang.反射。
07-31 17:54:25.657: E/AndroidRuntime(11454): at java. lang.反射。
07-31 17:54:25.657: E/AndroidRuntime(11454): at com. android. interal. os.ZygoteInit$method odAndArgsCaller. run(ZygoteInit. java: 790)
07-31 17:54:25.657: E/Android Runtime(11454): at com. android. interal. os。ZygoteInit. main(ZygoteInit. java: 557)
07-31 17:54:25.657: E/Android Runtime(11454): at dalvik. system.NativeStart. main(本地方法)
07-31 17:54:25.657: E/AndroidRuntime(11454):由java. lang引起。07-31 17:54:25.657: E/AndroidRuntime(11454): at com. nsholmes. bball Stats. games.游戏. loadComponents(Game. java: 34)
07-31 17:54:25.657: E/AndroidRuntime(11454): at com. nsholmes. bball Stats. games.游戏. java: 27)
07-31 17:54:25.657: E/AndroidRuntime(11454): at android. app.Activity. performCreative(Activity. java: 4465)
07-31 17:54:25.657: E/AndroidRuntime(11454): at android. app.Instrumentation. call ActivityOncreate(Instrumentation. java: 1053)
07-31 17:54:25.657: E/AndroidRuntime(11454): at android. app.ActivityThread. performLaunchActive(ActivityThread. java: 1934)
07-31 17:54:25.657: E/Android Runtime(11454):...11 more

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

<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个答案

赫连瑾瑜
2023-03-14

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

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

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

编辑:

从现在开始,我们看到了完整的堆栈跟踪,错误位于loadComponents函数的第34行。您在NumberStepper上调用findViewById来查找R.id.tvStepperName和R.id.tvStepperValue,您确定在布局xml中的NumberStepper中具有这些名称的Views吗?

贲永思
2023-03-14

问题可能是你试图找到视图的方式。据我所知,它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);
.....
}
.....
.....
 类似资料:
  • 问题内容: 我正在使用Mockito。我想在调用未存根方法时抛出一个。 有什么办法吗? 问题答案: 您可以为模拟设置默认答案。所有未存根的方法都将使用此默认答案。 请注意,您 不能 使用此功能,因为该方法是在方法调用之前(嘲笑when()调用如何工作的?),并且它将在模拟进入存根模式之前抛出a 。 因此,您必须使用它来工作。

  • 我见过有人建议使用sys。Python中的exit()。我的问题是,有没有其他方法可以退出当前脚本的执行,我的意思是终止,并出现错误。 大概是这样的: 目前我的解决方案是:

  • 我正在使用Sprock和Spring,当我嘲弄我的一个组件类时,我得到了错误。 > CGLIB-NODEP:3.2.0 CGLIB:3.2.0 Spock-Core:1.0-groovy-2.4 Spring-测试:4.1.4.释放 java.lang.NoClassDefoundError:无法初始化类org.spockframework.mock.runtime.proxybasedmockf

  • 嗨,我正在尝试从单个消息中提取多条消息,并使用拆分器元素将这些消息拆分为多条消息。但是我的拆分器抛出以下错误 2015-10-26 15:09:06,257[[ACTIVE]execute thread:' 0 ' for queue:' WebLogic . kernel . default(self-tuning)']ERROR org . spring framework . web . C

  • 错误: 错误:在XMLHttpRequest.HandleError(XHR.JS:99)的createError(createError.js:16)处出现网络错误。CORS策略阻止了从源“http://localhost:3001/user/login”访问“http://localhost:3000”处的XMLHttpRequest:“请求头字段Access-Control-Allog-Or