blob: 460fa3a7241fba00b380f1357274ead1533337df [file] [log] [blame]
/*
* Copyright (C) 2018 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.egg.paint
import android.content.Context
import android.transition.Transition
import android.transition.TransitionListenerAdapter
import android.util.AttributeSet
import android.view.*
import android.widget.FrameLayout
class ToolbarView : FrameLayout {
var inTransition = false
var transitionListener: Transition.TransitionListener = object : TransitionListenerAdapter() {
override fun onTransitionStart(transition: Transition?) {
inTransition = true
}
override fun onTransitionEnd(transition: Transition?) {
inTransition = false
}
}
constructor(context: Context) : super(context) {
}
constructor(context: Context, attrs: AttributeSet) : super(context, attrs) {
}
constructor(
context: Context,
attrs: AttributeSet,
defStyle: Int
) : super(context, attrs, defStyle) {
}
override fun onApplyWindowInsets(insets: WindowInsets?): WindowInsets {
var lp = layoutParams as FrameLayout.LayoutParams?
if (lp != null && insets != null) {
if (insets.hasStableInsets()) {
lp.topMargin = insets.stableInsetTop
lp.bottomMargin = insets.stableInsetBottom
} else {
lp.topMargin = insets.systemWindowInsetTop
lp.bottomMargin = insets.systemWindowInsetBottom
}
layoutParams = lp
}
return super.onApplyWindowInsets(insets)
}
}