我目前正在学习 android 片段编程几个小时,但是我的片段没有出现。我没有收到任何错误。调试显示片段类的 onCreateView() 从未被调用。
这是我的主要布局 activity_main.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<LinearLayout
android:id="@+id/FragCont"
android:layout_width="100dp"
android:layout_height="200dp"
android:layout_alignParentRight="true"
android:layout_toRightOf="@+id/textView1"
android:orientation="vertical" >
</LinearLayout>
这是我的主要活动:
package k.myApp;
import com.actionbarsherlock.app.SherlockActivity;
import com.actionbarsherlock.app.SherlockFragment;
import com.actionbarsherlock.app.SherlockFragmentActivity;
import android.os.Bundle;
import android.app.Activity;
import android.app.FragmentTransaction;
import android.support.v4.app.FragmentActivity;
import android.view.Menu;
import android.widget.Toast;
public class MainActivity extends FragmentActivity {
SherlockFragment Fragment;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
CentralData.getDataSource().open();
CentralData.getDataSource().close();
FragmentShowNotes fsn = new FragmentShowNotes();
FragmentTransaction transaction = getFragmentManager().beginTransaction();
transaction.replace(R.id.FragCont, fsn);
transaction.commit();
}
}
这是我的片段类,FragmentShowNotes.java: package k.myApp;
import org.holoeverywhere.LayoutInflater;
import android.app.Fragment;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import com.actionbarsherlock.app.SherlockFragment;
public class FragmentShowNotes extends Fragment{
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
return inflater.inflate(R.layout.frag_show_notes, container, false);
}
}
最后但并非最不重要的是我的片段布局,frag_show_notes.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Dies ist das ShowNotesFragment" />
</LinearLayout>
有人知道出了什么问题吗?谢谢!