[已解决]ScrollView的问题,一直没有解决,求解啊

cocos2d js 3.0rc0
在真机android调试下,有ScrollView的界面就会变成如下显示

ScrollView创建代码如下:
this._lstView=ccui.ScrollView.create();
this._lstView.retain();
this._lstView.setDirection(ccui.ScrollView.DIR_VERTICAL);
this._lstView.setTouchEnabled(true);
this._lstView.setBounceEnabled(true);
this._lstView.setSize(cc.size(453, 330));
this._lstView.x = 2;
this._lstView.y = 2;
this._view.addChild(this._lstView);

也试过在Cocos Studio1.5.0.1里创建,都是一样的问题
这个问题,从3.0beta就有了,求解啊

大约10天前,俺也发了一贴。貌似现在都没人鸟我。

要命的是,类似的玩意在浏览器是正常的,在手机上就不正常。 这个好比网恋一个女,照片很女神,到见面那天真人让你吐了。
longlong ago,大概至少半年前,我说js为什么不像quick-x那样出个player。player调试快,最接近真机。

http://www.cocoachina.com/bbs/read.php?tid=195955&page=1
使用了这个帖子的方法,发现就连build runtimes都编不过,报如下错:
-compile:
Compiling 3 source files to E:\xxx\frameworks\runtime-src\proj.android\bin\classes
E:\xxx\frameworks\runtime-src\proj.android\src\org\cocos2dx\javascript\AppActivity.java:140: 错误: 找不到符号
public Cocos2dxGLSurfaceView onCreateView() {
^
符号: 类 Cocos2dxGLSurfaceView
位置: 类 AppActivity
E:\xxx\frameworks\runtime-src\proj.android\src\org\cocos2dx\javascript\AppActivity.java:141: 错误: 找不到符号
Cocos2dxGLSurfaceView glSurfaceView = new Cocos2dxGLSurfaceView(this);
^
符号: 类 Cocos2dxGLSurfaceView
位置: 类 AppActivity
E:\xxx\frameworks\runtime-src\proj.android\src\org\cocos2dx\javascript\AppActivity.java:141: 错误: 找不到符号
Cocos2dxGLSurfaceView glSurfaceView = new Cocos2dxGLSurfaceView(this);
^
符号: 类 Cocos2dxGLSurfaceView
位置: 类 AppActivity
注: E:\xxx\frameworks\runtime-src\proj.android\src\org\cocos2dx\javascript\AppActivity.java使用了未经检查或不安全的操作。
注: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。
3 个错误
BUILD FAILED

解决了,代码如下:
import org.cocos2dx.lib.*;
public class AppActivity extends Cocos2dxActivity {

   public Cocos2dxGLSurfaceView onCreateView() 
   {  
    Cocos2dxGLSurfaceView glSurfaceView = new Cocos2dxGLSurfaceView(this);  
    //glSurfaceView.setEGLConfigChooser(5, 6, 5, 0, 16, 8); 
      glSurfaceView.setEGLConfigChooser(8 , 8, 8, 8, 16, 8);
    return glSurfaceView;  
  }

}

刚才的报错是因为没有import org.cocos2dx.lib.*

Hi, 这是安卓Stencil Buffer的格式问题,请问你的测试机型以及安卓版本是什么?默认的565颜色格式应该是支持大多数机型的

我的是sony 机,4.4.2系统,不过rc2开始,就没有这个问题了,rc3也没有这个问题了