I made a very simple Activity which shows a simple ListFragment like below:
My Activity:
public class MyActivity ex
I figured out myself, It is because I missed the super.onCreate(savedInstanceState); in my Activity onCreate() method . After added this, things are fine.
super.onCreate(savedInstanceState);