生成新视图时,它们会彼此堆叠

发布于 2024-10-19 15:37:41 字数 531 浏览 1 评论 0原文

当我单击按钮将新按钮添加到框架布局时,新按钮会堆叠在一起。知道我做错了什么吗?

public void onClick(View v) {
                Button newAlarm = new Button(Hop_Timer.this);
                newAlarm.setText(alarmMinutes.getText() + " Addition - Remove");
                newAlarm.setLayoutParams(new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));
                FrameLayout alarmsFrame = (FrameLayout) findViewById(R.id.display_alarms);
                alarmsFrame.addView(newAlarm);
            }

When I click my button for adding new buttons to a framelayout, the new buttons are stacking on top of each other. Any idea what I'm doing wrong?

public void onClick(View v) {
                Button newAlarm = new Button(Hop_Timer.this);
                newAlarm.setText(alarmMinutes.getText() + " Addition - Remove");
                newAlarm.setLayoutParams(new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));
                FrameLayout alarmsFrame = (FrameLayout) findViewById(R.id.display_alarms);
                alarmsFrame.addView(newAlarm);
            }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧城空念 2024-10-26 15:37:41

那是因为您使用 FrameLayout 视图。尝试垂直方向的 LinearLayout ,一切都会好起来的。

That's because you use a FrameLayout view. Try LinearLayout with vertical orientation and everything will be fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文