use of com.taobao.luaview.view.LVLoadingView in project LuaViewSDK by alibaba.
the class CustomLoading method initPanel.
@Override
public void initPanel() {
final View lvLoadingView = new ProgressBar(getContext(), null, android.R.attr.progressBarStyleSmallInverse);
LayoutParams relativeLayout = LuaViewUtil.createRelativeLayoutParamsWW();
relativeLayout.addRule(RelativeLayout.CENTER_IN_PARENT);
lvLoadingView.setVisibility(View.VISIBLE);
addView(lvLoadingView, relativeLayout);
}
Aggregations