当前位置: 首页 > 知识库问答 >
问题:

无法解析方法Android Studio

哈朗
2023-03-14

如何解决此错误?我在这段代码中遇到了一个错误:

无法解决方法的add(int,android.trey.startingpoint.nl.秒活动。碎片

    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_second);

    if (savedInstanceState == null) {
        getFragmentManager().beginTransaction()
                .add(R.id.container, new PlaceholderFragment()).commit();
    }
}

 public static class PlaceholderFragment extends Fragment {

    public PlaceholderFragment() {
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.fragment_second, container, false);
        return rootView;
    }
}

谢谢你的帮助!

编辑:导入:

导入android。应用程序。活动导入android。支持v4。应用程序。碎片

导入android。操作系统。捆导入android。看法更平坦;导入android。看法菜单导入android。看法MenuItem;导入android。看法看法导入android。看法视图组;导入android。小装置。干杯

导入com.google.android.gms.maps.相机更新html" target="_blank">工厂;导入com.google.android.gms.maps.谷歌地图;导入com.google.android.gms.maps.地图碎片;导入com.google.android.gms.maps.model.比特地图描述工厂;导入com.google.android.gms.maps.model.相机位置;导入com.google.android.gms.maps.model.LatLng;导入com.google.android.gms.maps.model.标记选项;

共有3个答案

劳仲渊
2023-03-14

将导入android.app.片段更改为android.support.v4.app.片段

喜欢

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v7.app.AppCompatActivity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;


public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        if (savedInstanceState == null) {
            getSupportFragmentManager().beginTransaction()
                    .add(R.id.container, new PlaceholderFragment()).commit();
        }
    }

    public static class PlaceholderFragment extends Fragment {
        public PlaceholderFragment(){
        }

        @Override
        public View onCreateView(LayoutInflater inflater,ViewGroup container,Bundle savedInstanceState){
            View rootView = inflater.inflate(R.layout.fragment_main, container, false);
            return rootView;
        }
    }
}
归鸿朗
2023-03-14

试试这个:

change getFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment()).commit();
to 
getSupportFragmentManager().beginTransaction()
.replace(R.id.container, new PlaceholderFragment()).commit();
冯宏放
2023-03-14

占位符片段可能是一个支持片段。

将getFragmentManager更改为getBackportFragmentManager()如下所示:

if (savedInstanceState == null) {
    getSupportFragmentManager().beginTransaction()
            .add(R.id.container, new PlaceholderFragment()).commit();
}

您的活动还必须扩展碎片活动。

注:

如果您不打算使用支持片段,那么您可以更改片段的导入。

更改导入android。支持v4。应用程序。碎片导入android。应用程序。碎片

 类似资料:
  • 我正在通过Android Studio中的一个应用程序工作,该应用程序使用学校意图传递数据。我已经创建了传递数据的对象,并启动了,但是我不断收到一个警告,说我的方法无法解析。有什么想法吗?提前谢了。

  • 正如文件所述: Android O允许您通过在res/字体/文件夹中添加字体文件来捆绑字体作为资源。 结果: 您可以使用getFont(int)方法检索字体,其中需要传递要检索的字体的资源标识符。此方法返回Typeface对象。这将对字体的第一个重量或样式变体(如果是字体系列)进行编码。然后可以使用字体。create(typeface,style)方法来检索特定样式。 注意:TextView已经为

  • > 在菜单项和添加导航头之间导航的代码由一个方法组成。 由于作者没有提到在哪里粘贴这段代码,我粘贴在我的文件中 在菜单项之间导航和添加导航标题之间的代码是否由我粘贴在正确的位置? 在方法selectDrawerItem(MenuItem MenuItem)中有一条注释,创建一个新片段,并根据位置指定要显示的行星,作者是否希望我在这里添加一些内容。

  • 我正在尝试构建一个java。net应用程序,其中客户端和服务器必须通过串行收集类型(如字节[])相互发送数据。 由于未知原因,我的DataInputStream无法解析方法readAllBytes()。 一个朋友把它扔进了IDE,它没有抱怨。我不确定这怎么会是一个版本问题,但我检查了一下,并没有误解我的项目。我正在使用Java 8。 实际上,我确信应该支持这个方法,但我不明白为什么不支持,因为它是

  • 我试图使用for循环迭代一系列的日期,我打算使用plusDays增加开始日期,但是我得到了“Canland resolve method plusDays in date”。下面是我的代码:

  • 我正在尝试为改造设置缓存,以便它不必不断检索数据。我遵循了这个SO,因为它似乎在我需要的正确方向上。 我有以下内容(与销售订单相同) 但是,返回错误。 我在这里做错了什么?我有改造2.1.0和okhttp3 3.4.1