1

为什么 findViewById 会抛出 NULL 异常?这是布局和源代码文件:

<RelativeLayout 
...
tools:context=".MainActivity" >

<TextView 
    android:id="@+id/usernameText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

</RelativeLayout>

这是 MainActivity 中的源代码:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);      
    try{
        TextView text=(TextView)MainActivity.this.findViewById(R.id.usernameText);
        text.setText(10);
    }catch(Exception e){
        Log.i("Log", e.getMessage()+"Error!"); // LogCat message

    }

}

但是,findViewById()返回 null,我什至不知道为什么。这段代码非常简单。

4

2 回答 2

6
text.setText(10);

这样你正在寻找一个Stringid = 10;应该改变的

 text.setText(String.valueOf(10));
于 2013-05-14T11:57:17.683 回答
0

使用此代码........

public class MainActivity extends Activity {
    TextView text;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        text =(TextView)findViewById(R.id.usernameText);
        try{
            text.setText(String.valueOf(10));
        }catch(Exception e){
            Log.i("Log", e.getMessage()+"Error!"); // LogCat message
        }
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
}
于 2013-05-14T12:02:09.513 回答