Notice
Recent Posts
Recent Comments
Link
투케이2K
202. (AndroidStudio/android/java) 액티비티 화면 팝업창 (popup) 형태로 설정 실시 본문
[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : java
[소스 코드]
<!-- ======= [AndroidManifest.xml 파일 >> 액티비티 팝업창 형태 설정] ======= -->
<activity android:name=".P_AlertDialog" android:theme="@android:style/Theme.Dialog" />
<!-- ======= [JAVA 파일 >> 액티비티 팝업창 형태 설정] ======= -->
package kr.co.two2k.manager;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Color;
import android.graphics.drawable.PaintDrawable;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.view.Window;
public class P_AlertDialog extends Activity {
//TODO [메인 액티비티 시작]
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//TODO [다이얼로그 팝업창 검정색 배경 없애기]
getWindow().setBackgroundDrawable(new PaintDrawable(Color.TRANSPARENT));
//TODO [타이틀바 없애기]
requestWindowFeature(Window.FEATURE_NO_TITLE);
//TODO [layout >> xml 파일 지정]
setContentView(R.layout.custom_alert_dialog);
}// 메인 종료
}// 클래스 종료
반응형
'Android' 카테고리의 다른 글
Comments