我有一个带有这种布局的抽象app.get('/draft-results', function(req, res) {
fantasy.getDraftResults(req, function(err, draft_results) {
if (err) {
// send some sort of error response here
console.error(err);
return;
}
console.log(util.inspect(draft_results, false, null));
//looks in views folder by default
res.render('draft-results', {
draft_results: draft_results
});
});
});
exports.getDraftResults = function(req, cb) {
oauth.get(
"http://fantasysports.yahooapis.com/fantasy/v2/league/" + conf.LEAGUE_ID + "/draftresults?format=json",
req.user.accessToken,
req.user.tokenSecret,
function(e, data, resp) {
if (e) {
console.error(e);
cb(e);
return;
}
data = JSON.parse(data);
var draft = data.fantasy_content.league[1].draft_results;
// send results back to caller
cb(null, draft);
}
);
};
类:
BaseActivity
应用程序中的所有活动都扩展了BaseActivity并覆盖了一个名为<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize" />
<ViewStub
android:id="@+id/activity_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
的方法,以提供在getLayoutResID
中夸大的布局资源ID。我这样做是为了避免在每个布局中使用工具栏。用于夸大布局的基类中的代码是:
ViewStub
我的一项活动使用新的Data Binding系统,位于其布局下方:
private void setupLayout() {
setContentView(R.layout.activity_base);
ViewStub viewStub = (ViewStub) findViewById(R.id.activity_layout);
viewStub.setLayoutResource(getLayoutResID());
viewStub.inflate();
}
虽然数据绑定完美无缺,但问题是ToolBar不可见。知道为什么数据绑定引擎会删除/隐藏此活动中的工具栏吗?
答案 0 :(得分:1)
ViewStubs需要特别注意,因为它们在充气时会自行更换,而不是自己填充。 阅读data-binding/guide#viewstubs
的更多信息另一个解决方案(完全避免ViewStub
)是让你的ConcreteActivities
在其布局中包含工具栏布局 - 而不是让包含工具栏的存根膨胀。如果您想要为活动使用自定义工具栏,那么您也会减少头痛。