我正在启动一个托管带有项目列表的片段的活动。
单击某个项目时。布局是否测试了是否为三个。
public void onFeedSelected(Feed feed) {
if (isThreePane) {
addItemsFragment(feed);
}
else {
Intent i=new Intent(this, ItemsActivity.class);
i.putExtra(ItemsActivity.EXTRA_FEED_KEY, feed.getKey());
startActivity(i);
}
}
正如您所看到的那样,如果它不是三个窗格,那么它会启动一个活动。这在普通手机上运行良好。
但如果它是平板电脑屏幕,则活动不会在片段中启动。
这是我的AddFeed()方法。
public void addItemsFragment(Feed feed) {
FragmentManager fragMgr=getSupportFragmentManager();
ItemsFragment items=(ItemsFragment)fragMgr.findFragmentById(R.id.second_pane);
FragmentTransaction xaction=fragMgr.beginTransaction();
if (items==null) {
items=new ItemsFragment(true);
items.setOnItemListener(this);
xaction
.add(R.id.second_pane, items)
.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN)
.addToBackStack(null)
.commit();
}
else {
ContentFragment content=
(ContentFragment)fragMgr.findFragmentById(R.id.third_pane);
if (content!=null) {
xaction.remove(content).commit();
fragMgr.popBackStack();
}
}
我不明白为什么它没有被启动..当我点击该项目时它在平板电脑设备上什么都不做。
编辑:
private boolean isThreePane=false;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
FeedsFragment feeds
=(FeedsFragment)getSupportFragmentManager()
.findFragmentById(R.id.feeds);
feeds.setOnFeedListener(this);
isThreePane=(null!=findViewById(R.id.second_pane));
if (isThreePane) {
feeds.enablePersistentSelection();
}
}
答案 0 :(得分:0)
我根本不熟悉Fragment API,所以这是在黑暗中完全拍摄的......
isThreePane=(null!=findViewById(R.id.second_pane));
平板电脑上的设置为true,这意味着findViewById(R.id.second_pane)
不会返回null。你有这个在你的xml中硬编码的second_pane视图吗?应用程序如何确定second_pane视图是否应该存在?它是基于屏幕尺寸吗?
你应该使用这样的东西:
fragMgr.findFragmentById(R.id.second_pane);
而不是findViewById?我再一次对片段api一无所知,对不起,如果这是一个愚蠢的问题。