/* * Copyright (C) 2018 Jared Rummler * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.jaredrummler.cyanea.app import android.content.Context import android.content.res.Resources import android.os.Bundle import android.view.Menu import androidx.appcompat.app.AppCompatActivity import com.jaredrummler.cyanea.Cyanea import com.jaredrummler.cyanea.CyaneaResources import com.jaredrummler.cyanea.delegate.CyaneaDelegate /** * Base class for an [AppCompatActivity] that uses [Cyanea] for dynamic themes. * * You must implement [BaseCyaneaActivity.getThemeResId] and return a valid cyanea theme. */ abstract class CyaneaAppCompatActivity : AppCompatActivity(), BaseCyaneaActivity { private val delegate: CyaneaDelegate by lazy { CyaneaDelegate.create(this, cyanea, getThemeResId()) } private val resources: CyaneaResources by lazy { CyaneaResources(super.getResources(), cyanea) } override fun attachBaseContext(newBase: Context) { super.attachBaseContext(delegate.wrap(newBase)) } override fun onCreate(savedInstanceState: Bundle?) { delegate.onCreate(savedInstanceState) super.onCreate(savedInstanceState) } override fun onPostCreate(savedInstanceState: Bundle?) { super.onPostCreate(savedInstanceState) delegate.onPostCreate(savedInstanceState) } override fun onStart() { super.onStart() delegate.onStart() } override fun onResume() { super.onResume() delegate.onResume() } override fun onCreateOptionsMenu(menu: Menu): Boolean { delegate.onCreateOptionsMenu(menu) return super.onCreateOptionsMenu(menu) } override fun getResources(): Resources = resources }