/* * Copyright (C) 2020 The Android Open Source Project * * 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.android.test.silkfx.app import android.app.Activity import android.content.Context import android.os.Bundle import android.util.AttributeSet import android.view.LayoutInflater import android.view.MenuItem import android.view.View open class BaseDemoActivity : Activity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) val inflater = LayoutInflater.from(this) inflater.factory2 = object : LayoutInflater.Factory2 { private val sClassPrefixList = arrayOf( "android.widget.", "android.webkit.", "android.app.", null ) override fun onCreateView( parent: View?, name: String, context: Context, attrs: AttributeSet ): View? { return onCreateView(name, context, attrs) } override fun onCreateView(name: String, context: Context, attrs: AttributeSet): View? { for (prefix in sClassPrefixList) { try { val view = inflater.createView(name, prefix, attrs) if (view != null) { if (view is WindowObserver) { view.setWindow(window) } return view } } catch (e: ClassNotFoundException) { } } return null } } } override fun onStart() { super.onStart() actionBar?.setDisplayHomeAsUpEnabled(true) } override fun onOptionsItemSelected(item: MenuItem): Boolean { if (item.itemId == android.R.id.home) { onBackPressed() return true } return super.onOptionsItemSelected(item) } }