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 4 Next »

ApplicationonCreate에서 앱의 다크테마를 비활성화할 수 있습니다.

버즈빌의 모든 SDK 제품과 앱 전체에 적용됩니다.

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

  • No labels