如何在AppbarLayout中将静态视图放在CollapsingToolbarLayout之上?我的协调程序视图中的组织如下所示:
<AppBarLayout>
<RelativeLayout/> ----- should not collapse
<CollapsingToolbarLayout/> ----- should collapse
</AppBarLayout>
<NestedScrollView/>
问题是,当我在CollapsingToolbar之上添加任何东西时,它们
我试图动态地创建一个按钮,但我尝试过的任何东西似乎都不起作用。到目前为止,这就是我所拥有的:
Button test = new Button(this);
test.setText("test");
test.setBackgroundResource(R.color.blue);
test.setLayoutParams (new LinearLayout.LayoutParams(60,ViewGroup.LayoutParams.FILL_PARENT));
这是我的xml文件,它是一个约束布局,如果这可能与动态创建的线性布局相冲突:
<?xml version=