我有一个奇怪的问题。我有一个活动,其中2个场景正在评论按钮点击更改。第一个场景是一个布局,只有一些文本(desc)从之前的活动传递,第二个场景是通过改装下载的注释。注释工作正常,但是当我从注释中切换回来时,desc文本从屏幕上消失,即使String desc保存相同的文本。这是代码的一部分,如果你还需要其他任何东西告诉我。感谢
boolean isCommentOpened = false;
rootScene = (ViewGroup) findViewById(R.id.root_scene);
commentScene = Scene.getSceneForLayout(rootScene,R.layout.comments_scene,this);
textScene = Scene.getSceneForLayout(rootScene,R.layout.single_data_scene,this);
fadeTrans = new Fade();
desc = intent.getStringExtra("passedDesc");
TextView titleL = (TextView) findViewById(R.id.finalTitleL);
descL = (TextView) findViewById(R.id.finalDescL);
titleL.setText(title);
descL.setText(desc);
public void commentClick(View view){
if (!isCommentOpened){
int item = Integer.parseInt(itemId);
View cView = this.getWindow().getDecorView().findViewById(android.R.id.content);
final Context c = cView.getContext();
listComments(catId,item,c);
TransitionManager.go(commentScene,fadeTrans);
isCommentOpened = true;
}else {
Log.i(TAG, "commentClick: "+desc);
TransitionManager.go(textScene,fadeTrans);
isCommentOpened = false;
}
}