[go: nahoru, domu]

blob: d93395884462c71448273cef598fa942d3fbc708 [file] [log] [blame]
/*
* Copyright 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 androidx.camera.integration.uiwidgets
import android.content.Intent
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import androidx.camera.integration.uiwidgets.databinding.ActivityMainBinding
import androidx.camera.integration.uiwidgets.foldable.FoldableCameraActivity
import androidx.camera.integration.uiwidgets.rotations.LockedOrientationActivity
import androidx.camera.integration.uiwidgets.rotations.OrientationConfigChangesOverriddenActivity
import androidx.camera.integration.uiwidgets.rotations.UnlockedOrientationActivity
import androidx.camera.integration.uiwidgets.viewpager.ViewPager2Activity
import androidx.camera.integration.uiwidgets.viewpager.ViewPagerActivity
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
val binding = ActivityMainBinding.inflate(layoutInflater)
setContentView(binding.root)
binding.rotationUnlocked.setOnClickListener {
launch(UnlockedOrientationActivity::class.java)
}
binding.rotationLocked.setOnClickListener {
launch(LockedOrientationActivity::class.java)
}
binding.rotationConfigChanges.setOnClickListener {
launch(OrientationConfigChangesOverriddenActivity::class.java)
}
binding.viewpager.setOnClickListener {
launch(ViewPagerActivity::class.java)
}
binding.viewpager2.setOnClickListener {
launch(ViewPager2Activity::class.java)
}
binding.foldable.setOnClickListener {
launch(FoldableCameraActivity::class.java)
}
}
private fun <A : AppCompatActivity> launch(activityClass: Class<A>) {
val intent = Intent(this, activityClass)
startActivity(intent)
}
}