想在一个activityGroup里面在加载一个新的activity,通过
Intent weather = new Intent(this, WeatherActivity.class);
Window subWeather = this.getLocalActivityManager().startActivity("WeatherActivity", weather);
View viewWeather = subWeather.getDecorView();
这三句把要加载的那个activity转换成view在加载,然后那个activity里面有重写了onTouchEvent方法,也实现了一些监听,比如button监听,结果在真机上button的监听缺监听不到了,这是神马情况...