public CommonDialog(Context context, int themeResId) {
super(context, themeResId);
mContentView = LayoutInflater.from(mContext).inflate(R.layout.dialog_common, null);
mTextView = (TextView) mContentView.findViewById(R.id.text);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(mContentView);
getWindow().setLayout(WindowManager.LayoutParams.WRAP_CONTENT, WindowManager.LayoutParams.WRAP_CONTENT);
}
public void setText(String text){
mTextView.setText(text);
}
}