================================= ================================= ================================= AlertDialog 을 클래스를 상속하고 크기와 위치를 정했는데 설정한대로 되지 않는 경우가 있다. //AlertDialog 상속한 클래스. public class CMsgPopup extends AlertDialog{ ....... void initGUI() { View popupView = View.inflate(getContext(), R.layout.popup, null); //내가 설정한 팝업뷰 xml setView(popupView, 0, 0, 0, 0); } } //-------------------------..