|
@@ -15,12 +15,7 @@ import android.support.customtabs.CustomTabsIntent
|
|
import android.support.v4.content.pm.ShortcutInfoCompat
|
|
import android.support.v4.content.pm.ShortcutInfoCompat
|
|
import android.support.v4.content.pm.ShortcutManagerCompat
|
|
import android.support.v4.content.pm.ShortcutManagerCompat
|
|
import android.support.v4.graphics.drawable.IconCompat
|
|
import android.support.v4.graphics.drawable.IconCompat
|
|
-import android.view.LayoutInflater
|
|
|
|
-import android.view.Menu
|
|
|
|
-import android.view.MenuInflater
|
|
|
|
-import android.view.MenuItem
|
|
|
|
-import android.view.View
|
|
|
|
-import android.view.ViewGroup
|
|
|
|
|
|
+import android.view.*
|
|
import android.widget.Toast
|
|
import android.widget.Toast
|
|
import com.afollestad.materialdialogs.MaterialDialog
|
|
import com.afollestad.materialdialogs.MaterialDialog
|
|
import com.bumptech.glide.load.engine.DiskCacheStrategy
|
|
import com.bumptech.glide.load.engine.DiskCacheStrategy
|
|
@@ -138,6 +133,7 @@ class MangaInfoController : NucleusController<MangaInfoPresenter>(),
|
|
override fun onOptionsItemSelected(item: MenuItem): Boolean {
|
|
override fun onOptionsItemSelected(item: MenuItem): Boolean {
|
|
when (item.itemId) {
|
|
when (item.itemId) {
|
|
R.id.action_open_in_browser -> openInBrowser()
|
|
R.id.action_open_in_browser -> openInBrowser()
|
|
|
|
+ R.id.action_open_in_web_view -> openInWebView()
|
|
R.id.action_share -> shareManga()
|
|
R.id.action_share -> shareManga()
|
|
R.id.action_add_to_home_screen -> addToHomeScreen()
|
|
R.id.action_add_to_home_screen -> addToHomeScreen()
|
|
else -> return super.onOptionsItemSelected(item)
|
|
else -> return super.onOptionsItemSelected(item)
|
|
@@ -302,6 +298,19 @@ class MangaInfoController : NucleusController<MangaInfoPresenter>(),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ private fun openInWebView() {
|
|
|
|
+ val source = presenter.source as? HttpSource ?: return
|
|
|
|
+
|
|
|
|
+ val url = try {
|
|
|
|
+ source.mangaDetailsRequest(presenter.manga).url().toString()
|
|
|
|
+ } catch (e: Exception) {
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ parentController?.router?.pushController(MangaWebViewController(source.id, url)
|
|
|
|
+ .withFadeTransaction())
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Called to run Intent with [Intent.ACTION_SEND], which show share dialog.
|
|
* Called to run Intent with [Intent.ACTION_SEND], which show share dialog.
|
|
*/
|
|
*/
|