我正在尝试在Android应用程序中使用Java代码添加视图,但是即使是基本测试Textview也不会显示
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ConstraintLayout layout = findViewById(R.id.form1);
TextView mazzo = new TextView(this);
mazzo.setId(View.generateViewId());
mazzo.setText(m_Text);
mazzo.setLayoutParams(new ConstraintLayout.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));
layout.addView(mazzo);
ConstraintSet set = new ConstraintSet();
set.clone(layout);
set.connect(mazzo.getId(), ConstraintSet.TOP, layout.getId(), ConstraintSet.TOP, 18);
set.connect(mazzo.getId(), ConstraintSet.LEFT, layout.getId(), ConstraintSet.LEFT, 18);
set.applyTo(layout);
答案 0 :(得分:0)
弄清楚了,我有另一个约束布局作为我的主要布局,显然,如果您在内部放置另一个约束布局,则必须连接每一侧,否则在连接右侧和底部之后也不会显示出来。