android.content.ActivityNotFoundException: No Activity found to handle Intent { (has extras) }

报错:👇👇

image.png

初始代码:
    @OnClick(R.id.include_top_iv_more)
    public void onViewClicked() {
        Intent intent_chat_set  = new Intent();
        intent_chat_set.putExtra("FriendId",FriendId);
        Log.e("FriendId","---------------FriendId_to--------------"+FriendId);
        startActivity(intent_chat_set);
    }

报错原因:没有指定跳转传值的Activity。

解决方法:指定跳转的活动。

故,修改后的代码如下:👇👇👇

    @OnClick(R.id.include_top_iv_more)
    public void onViewClicked() {
//        Intent intent_chat_set  = new Intent();
        Intent intent_chat_set  = new Intent(ChatActivity.this,ChatSetActivity.class);
        intent_chat_set.putExtra("FriendId",FriendId);
        Log.e("FriendId","---------------FriendId_to--------------"+FriendId);
        startActivity(intent_chat_set);
    }
posted @ 2020-06-05 13:54  哇哇·刘  阅读(2275)  评论(0)    收藏  举报