所以通常在为视图制作持有人时的指南中,比如说按钮,我通常在 onCreate 方法上看到它,如下所示:
public class className extends Activiy{
public void onCreate(){
final Button button = (Button) findViewById(r.something.something);
}
}
好吧,我想知道是否有任何区别,如果有的话,从那个到这个的方法更好:
public class className extends Activiy{
Button button;
public void onCreate(){
button= (Button) findViewById();
}
}