我不明白,我在同一个应用程序的主要活动中使用了相同的代码,并且运行良好。但是当我在其他活动中使用它时,它会抛出 NullPointer .... 这是为什么?
private TextView drag_txtSeconds;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.drag_layout);
drag_txtSeconds = (TextView)findViewById(R.id.TxtSeconds);
drag_txtSeconds.setOnTouchListener(new OnTouchListener() {
public boolean onTouch(View v,MotionEvent event) {
return true;
}});
}
希望你能帮我 :)