我在做fragment在接收activity传来的消息时,直接用getArguments().get("xxx").toString会报空指针,如果出现同样问题建议使用Bundle 来判断是否为空
Bundle bundle=getArguments();
if(bundle!=null){
//操作
}
Bundle bundle=getArguments();
if(bundle!=null){
//操作
}
2016-03-17
最新回答 / qq_杂草葰_0
<ViewFlipper android:id="@+id/flipper" android:layout_height="match_parent" android:layout_width="match_parent" > <view android:id="@+id/view1" android:layout_width="wrap_content" ...
2016-03-15
fragment流程图:http://www.cnblogs.com/zmaibbs7/p/4850900.html
2016-03-14