SPRING :: NOTE
[ANDROID] Activity View 사이즈 조절 본문
반응형
OnCreate 안에 Setcontent가 끝나는 시점에 넣어준다.
DisplayMetrics dm = getApplicationContext().getResources().getDisplayMetrics();
int width = (int) (dm.widthPixels * 0.7); //Display 사이즈의 70%
//int height = (int) (dm.heightPixels * 0.9); //Display 사이즈의 90%
getWindow().getAttributes().width = width;
getWindow().getAttributes().gravity = Gravity.RIGHT;
getWindow().setBackgroundDrawable(new ColorDrawable(Color.GRAY));
//getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
//getWindow().getAttributes().height = height;
반응형
'Development Language > JAVA · ANDROID' 카테고리의 다른 글
[ANDROID] WIFI를 이용한 원격 디버그 모드 설정 (0) | 2019.02.11 |
---|---|
[ANDROID] You need to use a Theme.AppCompat theme (or descendant) with this activity (0) | 2019.01.31 |
[ANDROID] Unable to open debugger port (localhost:8700) (0) | 2019.01.28 |
[ANDROID] Your project path contains non-ASCII characters. (0) | 2019.01.16 |
[ANDROID] Kotlin Plugin Error (0) | 2019.01.16 |
Comments