我创建了一个名为editor.xml的xml文件,其中包含一个FrameLayout。在我的主要活动中,我正在尝试将自定义片段添加到我的FrameLayout。
尝试添加片段时收到的错误是:
FragmentTransaction类型中的方法add(int,Fragment)不适用于参数(int,editorFrag)
然而,我的editorFrag扩展了Fragment,所以我很困惑为什么会发生这种情况。下面是我提到的文件的代码。任何帮助表示赞赏。
Editor.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
editorFrag.java
public class editorFrag extends Fragment
{
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
{
// Inflate the layout for this fragment
return inflater.inflate(R.layout.newlevel, container, false);
}
}
MainActivity.java
public class editorActivity extends FragmentActivity
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.editor);
// Check that the activity is using the layout version with the fragment_container FrameLayout
if(findViewById(R.id.fragment_container) != null)
{
// if we are being restored from a previous state, then we dont need to do anything and should
// return or else we could end up with overlapping fragments.
if(savedInstanceState != null)
return;
// Create an instance of editorFrag
editorFrag firstFrag = new editorFrag();
// add fragment to the fragment container layout
getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, firstFrag);
}
}
}
已经回答了:
Luksprog通过告诉我检查我的进口来回答这个问题。 Eclipse选择导入Fragment的SDK版本而不是我需要的支持版本。谢谢你的帮助。
答案 0 :(得分:32)
您忘了commit()
您的交易。
答案 1 :(得分:5)
您也忘了拨打addtoBackStack()
方法,否则当您点按后退按钮时应用会关闭。
答案 2 :(得分:5)
像这样添加commit()
Meteor.methods({
updateProfileUri : function(newUri) {
if(!this.userId) {
throw new Meteor.Error('user not signed-in');
}
check(newUri, String);
//If another user already uses this URI
if( Meteor.users.findOne({ _id: { $ne: this.userId }, 'profile.uri' : uri }) ) {
throw new Meteor.Error('uri already taken');
}
updateUriOfUser(this.userId, newUri);
}
});