요즘에는 다이어로그를 좀 써야 돼요.
하지만 이api 호출은 onCreate 방법 안에 있어야 합니다.
/** * Call to customize the basic appearance and behavior of the * fragment's dialog.
This can be used for some common dialog behaviors, * taking care of selecting flags, theme, and other options for you.
The * same effect can be achieve by manually setting Dialog and Window * attributes yourself.
Calling this after the fragment's Dialog is * created will have no effect.
* * @param style Selects a standard style: may be {@link #STYLE_NORMAL},
* {@link #STYLE_NO_TITLE}, {@link #STYLE_NO_FRAME}, or * {@link #STYLE_NO_INPUT}.
* @param theme Optional custom theme. If 0, an appropriate theme (based * on the style) will be selected for you.
*/
public void setStyle(@DialogStyle int style, @StyleRes int theme) {
mStyle = style;
if (mStyle == STYLE_NO_FRAME || mStyle == STYLE_NO_INPUT) {
mTheme = android.R.style.Theme_Panel;
}
if (theme != 0) {
mTheme = theme;
}
}
전체 화면, statusBar마저 사라짐
setStyle(DialogFragment.STYLE_NO_FRAME, android.R.style.Theme_Light_NoTitleBar_Fullscreen);
전체 화면, statusBar 아직
setStyle(DialogFragment.STYLE_NO_FRAME, android.R.style.Theme_Holo_Light);
매개 변수, 첫 번째 매개 변수는 내가 마음대로 주는 것이다.api 원본 코드에 의하면 두 번째 매개 변수가 0이 아니라면 첫 번째 매개 변수는 작용하지 않고 덮어쓸 수 있기 때문에 구체적인 양식이 아직 많고 심지어 스스로 맞춤형으로 만들 수 있어도 문제없다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.