Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

致命问题 #29

Open
yangxu1210 opened this issue Jun 30, 2019 · 19 comments
Open

致命问题 #29

yangxu1210 opened this issue Jun 30, 2019 · 19 comments

Comments

@yangxu1210
Copy link

看了好几个库 webview实现的方式都有一个共同的问题,当app 中有加载过webview的操作后,再进富文本编辑器页面的时候 会导致组件无效,或是其他一些莫名其妙的问题。。。。

@yangxu1210
Copy link
Author

webview 替换成x5 webview 组件失效这个问题解决

@feng1991G
Copy link

webview 替换成x5 webview 组件失效这个问题解决

我也遇到这个问题了,也把webview换成x5了,但是时好时坏,请问您遇到了吗?怎么解决啊

@Even201314
Copy link
Owner

@feng1991G 当app 中有加载过webview的操作后,这个是怎样操作重现?是否可以提供一下示例?

@feng1991G
Copy link

@feng1991G 当app 中有加载过webview的操作后,这个是怎样操作重现?是否可以提供一下示例?

这个是我用richeditor-android这个库发现的,目前用系统的webview无效,加载不出数据,换成x5的可以,但是首次加载x5很慢,大概得2~3分钟左右才行

@feng1991G
Copy link

webview 替换成x5 webview 组件失效这个问题解决

首次加载x5很慢,大概得2~3分钟左右才行,请问大佬你的存在这个问题吗?怎么解决呢?

@Even201314
Copy link
Owner

@feng1991G
我不清楚怎么重现你们说的这个问题。
是否是指先在一个Activity调用webview.loadurl;再跳到RichEditorActivity页面,然后富文本编辑器页面会出现问题?

public class StartActivity extends AppCompatActivity {
    @BindView(R.id.wv_start) WebView mWebView;

    @Override protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_start);
        ButterKnife.bind(this);

        mWebView.loadUrl("https://github.com");
    }

    @OnClick(R.id.btn_rich_editor) void onClickRichEditor() {
        Intent intent = new Intent(this, RichEditorActivity.class);
        startActivity(intent);
    }
}

@feng1991G
Copy link

@feng1991G
我不清楚怎么重现你们说的这个问题。
是否是指先在一个Activity调用webview.loadurl;再跳到RichEditorActivity页面,然后富文本编辑器页面会出现问题?

public class StartActivity extends AppCompatActivity {
    @BindView(R.id.wv_start) WebView mWebView;

    @Override protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_start);
        ButterKnife.bind(this);

        mWebView.loadUrl("https://github.com");
    }

    @OnClick(R.id.btn_rich_editor) void onClickRichEditor() {
        Intent intent = new Intent(this, RichEditorActivity.class);
        startActivity(intent);
    }
}

嗯,基本就是这样,前一个页面是h5的话,从h5跳进来,就会有这个问题,大佬有qq吗,以后交流方便

@yangxu1210
Copy link
Author

yangxu1210 commented Aug 7, 2019 via email

@yangxu1210
Copy link
Author

yangxu1210 commented Aug 7, 2019 via email

@feng1991G
Copy link

wordpress

哦,这个库好用吗?会不会存在同样的问题呢?

@yangxu1210
Copy link
Author

yangxu1210 commented Aug 7, 2019 via email

@feng1991G
Copy link

不存在这个问题,这个库有Java 和kotlin 版本,我目前用的kotlin版本,这个库相对于MRichEditor库 重量级一些 不是一个级别的东西。

------------------ 原始邮件 ------------------ 发件人: "Kevin"notifications@github.com; 发送时间: 2019年8月7日(星期三) 下午2:17 收件人: "Even201314/MRichEditor"MRichEditor@noreply.github.com; 抄送: "杨太太"511576657@qq.com; "Author"author@noreply.github.com; 主题: Re: [Even201314/MRichEditor] 致命问题 (#29) wordpress 哦,这个库好用吗?会不会存在同样的问题呢? — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.
加个联系方式共同探讨下吧

@yangxu1210
Copy link
Author

yangxu1210 commented Aug 7, 2019 via email

@FullCourage
Copy link

我现在改用了wordpress 这个库了

------------------ 原始邮件 ------------------ 发件人: "Kevin"notifications@github.com; 发送时间: 2019年8月7日(星期三) 中午1:52 收件人: "Even201314/MRichEditor"MRichEditor@noreply.github.com; 抄送: "杨太太"511576657@qq.com; "Author"author@noreply.github.com; 主题: Re: [Even201314/MRichEditor] 致命问题 (#29) @feng1991G 我不清楚怎么重现你们说的这个问题。 是否是指先在一个Activity调用webview.loadurl;再跳到RichEditorActivity页面,然后富文本编辑器页面会出现问题? public class StartActivity extends AppCompatActivity { @BindView(R.id.wv_start) WebView mWebView; @OverRide protected void onCreate(@nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_start); ButterKnife.bind(this); mWebView.loadUrl("https://github.com"); } @OnClick(R.id.btn_rich_editor) void onClickRichEditor() { Intent intent = new Intent(this, RichEditorActivity.class); startActivity(intent); } } 嗯,基本就是这样,前一个页面是h5的话,从h5跳进来,就会有这个问题,大佬有qq吗,以后交流方便 — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.

大佬,这个wordpress库能推荐一下吗,网上找不到

@yangxu1210
Copy link
Author

wordpress

可以试试这个项目:https://github.com/wordpress-mobile/WordPress-Android

@FullCourage
Copy link

wordpress

可以试试这个项目:https://github.com/wordpress-mobile/WordPress-Android

好的,没想到这么快就回复了,太感谢了

@yangxu1210
Copy link
Author

wordpress

可以试试这个项目:https://github.com/wordpress-mobile/WordPress-Android

好的,没想到这么快就回复了,太感谢了

刚才给你的项目应该错了,应该是这个https://github.com/wordpress-mobile/WordPress-Editor-Android ,你可以参考一下这篇文章https://blog.csdn.net/u012937589/article/details/52234914

@yangxu1210
Copy link
Author

wordpress

可以试试这个项目:https://github.com/wordpress-mobile/WordPress-Android

好的,没想到这么快就回复了,太感谢了

客气了正好看到邮件

@FullCourage
Copy link

wordpress

可以试试这个项目:https://github.com/wordpress-mobile/WordPress-Android

好的,没想到这么快就回复了,太感谢了

客气了正好看到邮件

好的,我看看,之前在QQ加你了,也是问这个问题,可以不用管的,感谢感谢

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants