我使用主详细信息流创建了应用程序。我将自定义ListView
和FrameLayout
作为容器,以显示ListView
中所选项目的详细信息。 Everythig很好但我的详细信息显示在onClick on ListView项目之后。我想在创建活动后自动显示ListView
中第一项的详细信息(例如,像android设置活动一样)。我该怎么办?感谢您的回复和帮助。
答案 0 :(得分:0)
将Fragment直接放在FrameLayout上的onCreate()上。
FragmentActivity frag = new FragmentActivity();
getSupportFragmentManager().beginTransaction().add(frag, details).commit();
并且总是通过FragmentManager替换()...