2012-08-24 137 views
21

我創建了一個名爲editor.xml的xml文件,其中包含一個FrameLayout。在我的主要活動中,我試圖將我的自定義片段添加到我的FrameLayout。試圖添加一個片段到我的片段容器FrameLayout

試圖加我的片段,當我收到的錯誤是:

在類型FragmentTransaction Add方法(INT,片段)是不適用的參數(INT,editorFrag)

但是我editorFrag擴展片段,所以我很困惑爲什麼會發生這種情況。以下是我提到的文件的代碼。任何幫助表示讚賞。

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告訴我下面的回答了這個問題對我來說到c赫克我的進口。 Eclipse選擇導入SDK版本的Fragment,而不是我需要的支持版本。感謝您的幫助。

+0

檢查進口。看看你是否沒有導入'Fragment'的'SDK'版本而不是'Fragment'兼容包。 – Luksprog

+0

你是完全正確的,我讓eclipse導入我確實選擇了SDK版本,在我的活動中選擇了支持版本。非常感謝 – Pedrom

+0

@Perdom是否接受這個問題的答案?謝謝。 http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work –

回答

29

您忘記了commit()您的交易。

+0

你在這個事實上的權利,但我採取了承諾,試圖縮小我的問題。不過謝謝你的回答,我需要再次添加commit()。 – Pedrom

5

您也忘記了調用addtoBackStack()方法,否則當您點擊後退按鈕時,您的應用程序會關閉。

5

添加提交()這樣的

getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, firstFrag).commit();