Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 2 Next »

Application의 onCreate에서 앱에 다크테마를 비활성화할 수 있습니다. 버즈빌 SDK를 포함하여 앱 전체에 적용됩니다.

public class MyApplication extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
       
        // 아래 코드 추가
        AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
    }
}

  • No labels