Android 대화 상자의 중앙 메시지 대화 상자의 메시지 텍스트를 가운데 정렬하고 싶습니다. 고유 한 TextView 개체를 만든 다음 팝업 작성기에 View로 제공합니다. AlertDialog.Builder popupBuilder = new AlertDialog.Builder(this); TextView myMsg = new TextView(this); myMsg.setText("Central"); myMsg.setGravity(Gravity.CENTER_HORIZONTAL); popupBuilder.setView(myMsg); 다른 모든 텍스트 매개 변수 (스타일, 색상, 크기 ...)를 제어 할 수 있습니다. 여백을 제어하기 위해 프로그래밍 방식으로 LinearLayout을 만들고 LayoutPa..