<bdo id='fxzbh'></bdo><ul id='fxzbh'></ul>

    <i id='fxzbh'><tr id='fxzbh'><dt id='fxzbh'><q id='fxzbh'><span id='fxzbh'><b id='fxzbh'><form id='fxzbh'><ins id='fxzbh'></ins><ul id='fxzbh'></ul><sub id='fxzbh'></sub></form><legend id='fxzbh'></legend><bdo id='fxzbh'><pre id='fxzbh'><center id='fxzbh'></center></pre></bdo></b><th id='fxzbh'></th></span></q></dt></tr></i><div id='fxzbh'><tfoot id='fxzbh'></tfoot><dl id='fxzbh'><fieldset id='fxzbh'></fieldset></dl></div>
    <tfoot id='fxzbh'></tfoot>

    1. <legend id='fxzbh'><style id='fxzbh'><dir id='fxzbh'><q id='fxzbh'></q></dir></style></legend>
      1. <small id='fxzbh'></small><noframes id='fxzbh'>

        android 中 findViewById() 上的 NullPointerException

        时间:2023-10-01
      2. <i id='jfQ1S'><tr id='jfQ1S'><dt id='jfQ1S'><q id='jfQ1S'><span id='jfQ1S'><b id='jfQ1S'><form id='jfQ1S'><ins id='jfQ1S'></ins><ul id='jfQ1S'></ul><sub id='jfQ1S'></sub></form><legend id='jfQ1S'></legend><bdo id='jfQ1S'><pre id='jfQ1S'><center id='jfQ1S'></center></pre></bdo></b><th id='jfQ1S'></th></span></q></dt></tr></i><div id='jfQ1S'><tfoot id='jfQ1S'></tfoot><dl id='jfQ1S'><fieldset id='jfQ1S'></fieldset></dl></div>

            <small id='jfQ1S'></small><noframes id='jfQ1S'>

              <tfoot id='jfQ1S'></tfoot>

              • <bdo id='jfQ1S'></bdo><ul id='jfQ1S'></ul>
                <legend id='jfQ1S'><style id='jfQ1S'><dir id='jfQ1S'><q id='jfQ1S'></q></dir></style></legend>
                  <tbody id='jfQ1S'></tbody>

                  本文介绍了android 中 findViewById() 上的 NullPointerException的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  在下面的代码中,我在第 9/10 行使用 findViewById() 得到 NullPointerException.
                  在我的主类中,我只是从这个类中实例化了一个对象,以使用 .getFrom()

                  In the following code i get a NullPointerException on lines 9/10 with findViewById().
                  In my main class I just instantiated an object from this class, to use .getFrom()

                  public class UserInteraction extends Activity {
                  EditText etFrom;
                  int from;
                  EditText etTill;
                  int till;
                  
                  public UserInteraction(){
                      etFrom = (EditText)findViewById(R.id.et_from);
                      etTill = (EditText)findViewById(R.id.et_till);
                  }
                  
                  public int getFrom() {
                      String s = etFrom.getText().toString();
                      int i = Integer.parseInt(s);
                      return i;
                  }
                  
                  public int getTill() {
                      String s = etTill.getText().toString();
                      int i = Integer.parseInt(s);
                      return i;
                  }
                  

                  是不是我的主类中设置了 contentView ..?可能是什么原因?

                  Is it that the contentView is set in my main class ..? What could be the cause ?

                  推荐答案

                  setContentView 方法应该在调用 findViewById 之前以适当的布局调用之前.它通常在 onCreate(Bundle savedInstance) 方法中调用.

                  The setContentView method should be called with appropriate layout before calling findViewById. It is usually called in onCreate(Bundle savedInstance) method.

                  这篇关于android 中 findViewById() 上的 NullPointerException的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:android:如何更改编辑文本的样式? 下一篇:使用屏幕键盘键入时,Android 中的 EditText 不显示

                  相关文章

                  最新文章

                  <legend id='aM0QL'><style id='aM0QL'><dir id='aM0QL'><q id='aM0QL'></q></dir></style></legend>
                1. <small id='aM0QL'></small><noframes id='aM0QL'>

                2. <i id='aM0QL'><tr id='aM0QL'><dt id='aM0QL'><q id='aM0QL'><span id='aM0QL'><b id='aM0QL'><form id='aM0QL'><ins id='aM0QL'></ins><ul id='aM0QL'></ul><sub id='aM0QL'></sub></form><legend id='aM0QL'></legend><bdo id='aM0QL'><pre id='aM0QL'><center id='aM0QL'></center></pre></bdo></b><th id='aM0QL'></th></span></q></dt></tr></i><div id='aM0QL'><tfoot id='aM0QL'></tfoot><dl id='aM0QL'><fieldset id='aM0QL'></fieldset></dl></div>

                3. <tfoot id='aM0QL'></tfoot>
                    <bdo id='aM0QL'></bdo><ul id='aM0QL'></ul>