onNewIntent 代码调用意图

Posted 安果移不动

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了onNewIntent 代码调用意图相关的知识,希望对你有一定的参考价值。

四种启动模式图解文字解释_丿灬安之若死-CSDN博客

kt代码

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_x5_webview)
        mX5WebView = findViewById<ProgressX5WebView>(R.id.forum_context);
        mToolbar = findViewById<Toolbar>(R.id.ag_toolbar)
        initData();
    }

    override fun onNewIntent(intent: Intent) {
        super.onNewIntent(intent)
        setIntent(intent)
        initData()
    }

 

    private fun initData() {
        val title = intent.getStringExtra("title")
        val url = intent.getStringExtra("url")
        val toobar_bg = intent.getIntExtra("toobar_bg_id", -1)
        val showFullId = intent.getBooleanExtra("show_insert_id", false);
        }

以上是关于onNewIntent 代码调用意图的主要内容,如果未能解决你的问题,请参考以下文章

替换 SingleTask 活动中的片段

onNewIntent() 生命周期和注册的监听器

如何从片段 KOTLIN 中调用意图 [重复]

使用意图从另一个片段调用一个片段

从意图活动访问片段方法

如何从我的活动中意图在我的标签栏中分段?