Android drawable xml 各种小知识
摘抄自网络。
圆角或者各种变种背景,
public LoadingDialog(Context context){
super(context, R.style.loading_dialog_style);
}
public LoadingDialog(Context context, int theme){
super(context,theme);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.dialog_login_loading);
}
浙公网安备 33010602011771号