public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.game);
        Resources r = this.getResources();
         Bundle bundle = getIntent().getExtras();
        String host = bundle.getString("host");
     int port = bundle.getInt("port");
        connectToServer(host,port);
        config(playerID);      
       }
config(playerID);这个函数一定要设置断点,在Debug里执行才能成功执行。不设置断点,貌似就跳过了,在下面的断点检查它赋值的变量时,发现完全没赋值。只有在Debug模式下才能赋值啊,这是怎么回事?愁死了……