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);
    }
posted @ 2016-06-06 14:01  likeshu  阅读(837)  评论(0)    收藏  举报