* Remove MotionLayout and add full screen dialog for enlarged cover * Address some of the review comments (cherry picked from commit e7d6dfff530db08a8380e68425b9f9d11da497cb) # Conflicts: # app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaController.kt # app/src/main/res/xml/manga_info_header_scene.xml # app/src/main/res/xml/manga_info_header_scene_sw720dp.xml
14 lines
358 B
Kotlin
14 lines
358 B
Kotlin
package eu.kanade.tachiyomi.widget
|
|
|
|
import android.content.Context
|
|
import android.view.View
|
|
import androidx.appcompat.app.AppCompatDialog
|
|
import eu.kanade.tachiyomi.R
|
|
|
|
class TachiyomiFullscreenDialog(context: Context, view: View) : AppCompatDialog(context, R.style.ThemeOverlay_Tachiyomi_Dialog_Fullscreen) {
|
|
|
|
init {
|
|
setContentView(view)
|
|
}
|
|
}
|