Liu Feng

Results 2 comments of Liu Feng

``` java /** * 描述:用指定的View填充主界面. * @param contentView 指定的View */ public void setAbContentView(View contentView) { contentLayout.removeAllViews(); contentLayout.addView(contentView,new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT)); } ``` 将setAbContentView()中的initIocView();去掉不太好吧. ``` java @AbIocView(id = R.id.mText)TextView mTextView; protected void...

应用环境:在activity中显示一个load弹窗,来完成一个可能比较耗时的本地操作, 如果,不在onload中添加像task这样的异步操作的话,调用loadfinish(),是不可以的.