gpt4 book ai didi

android - 在 Android 应用程序中向 Activity 添加新 fragment 时出错

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:47:58 24 4
gpt4 key购买 nike

我正在按照 Android 开发者网站 ( tutorial ) 上的教程进行操作,但遇到了这个错误:

The method add(int, Fragment) in the type FragmentTransaction is not applicable for the arguments (int, DisplayMessageActivity.PlaceholderFragment)

我做了很多研究,似乎大多数人的问题是他们导入了错误的东西,但我导入了 android.app.Fragment 这是大多数人的解决方案这个错误和 DisplayMessageActivity.PlaceholderFragment 是 Fragment 的扩展,所以我认为类型应该匹配得很好(我也尝试用 new Fragment() 替换 new PlaceholderFragment() 并得到相同的错误。我认为错误来自此文件。

下面是我用导入的文件创建的新 Activity 的代码;任何帮助将不胜感激。

package com.example.myfirstapp;

import android.support.v7.app.ActionBarActivity;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;

public class DisplayMessageActivity extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_display_message);

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

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}

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

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

最佳答案

你应该使用 getSupportFragmentManager()在处理 android.support.v4.app.Fragment 时和 getFragmentManager()在处理 android.app.Fragment 时.
从你的例子来看,你应该使用后者。

getFragmentManager().beginTransaction().add(R.id.container, new PlaceholderFragment()).commit();

关于android - 在 Android 应用程序中向 Activity 添加新 fragment 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25455664/

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