gpt4 book ai didi

java - 从 fragment 调用 Intent

转载 作者:行者123 更新时间:2023-11-29 10:11:44 25 4
gpt4 key购买 nike

我有一个 fragment

public class TwitterFragment extends Fragment implements OnClickListener {}

从这个 fragment 我调用了一个 Intent :

Intent intent = new Intent(this, WebViewActivity.class);

在哪里,

public class WebViewActivity extends Activity {

但是调用 Intent 会出错:

Error:(214, 33) error: no suitable constructor found for Intent(TwitterFragment,Class<WebViewActivity>)
constructor Intent.Intent(String,Uri) is not applicable
(argument mismatch; TwitterFragment cannot be converted to String)
constructor Intent.Intent(Context,Class<?>) is not applicable
(argument mismatch; TwitterFragment cannot be converted to Context)

当 TwitterFragment 类扩展 Activity 而不是 fragment 时,此代码有效。

最佳答案

Fragment 不是 Context。试试这个:

Intent intent = new Intent(getActivity(), WebViewActivity.class);

关于java - 从 fragment 调用 Intent ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31419891/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com