以下是我的屏幕设计:
绿色边框表示可见屏幕。 首先,用户只能看到相对的View 1,而Scrollview不会做任何事情。 用户按下按钮以显示第二个相对视图后,第二个相对视图从不可见变为可见,视图现在可以滚动(因为屏幕已扩展)
我已经嵌套了我的布局
getDataFromCache().then(function(result) {
if (result)
serveToClient();
} else {
return getDataFromWebService().then(function(result) {
if(result){
//do more stuff
}
}).then(...); // you can continue the promise chain here
}
}).catch(function(err) {
// process any errors here
});
我的问题是我的“我的相对视图1”不会拉伸到适合屏幕,或者如果它确实伸展到适合屏幕,我将无法向下滚动到相对视图2。
我已尝试在所有不同级别上使用match_parent,fill_parent,wrap_content,但尚未找到解决问题的方法。关于我将如何创建的任何建议都解决了这个问题?