在 Java 中创建按钮,导致 getLayoutParams 返回 null
我需要用 Java 创建一个按钮。下面是我的代码:
Button b = new Button(MyClass.this);
b.requestLayout();
LayoutParams lp = b.getLayoutParams();
lp.height = LayoutParams.WRAP_CONTENT;
lp.width = LayoutParams.WRAP_CONTENT;
b.setLayoutParams(lp);
b.setText("bla");
b.setTextSize(16);
b.setOnClickListener(myListener);
然后我将此按钮添加到 ListView 的底部:
getListView().addFooterView(b);
但是这会崩溃,因为 getLayoutParams 返回 null。
即使我创建新的 LayoutParams 而不是 getLayoutParams,即:
Button b = new Button(MyClass.this);
LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
b.setLayoutParams(lp);
b.setText("bla");
b.setTextSize(16);
b.setOnClickListener(myListener);
应用程序也会崩溃。如果没有 setLayoutParams,它运行正常,但我的按钮大小不正确。
如何确定按钮的大小?
I need to create a button in Java. Below is my code:
Button b = new Button(MyClass.this);
b.requestLayout();
LayoutParams lp = b.getLayoutParams();
lp.height = LayoutParams.WRAP_CONTENT;
lp.width = LayoutParams.WRAP_CONTENT;
b.setLayoutParams(lp);
b.setText("bla");
b.setTextSize(16);
b.setOnClickListener(myListener);
I then add this button to the bottom of a ListView:
getListView().addFooterView(b);
However this crashes, because getLayoutParams returns null.
Even if I create new LayoutParams instead of getLayoutParams, i.e.:
Button b = new Button(MyClass.this);
LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
b.setLayoutParams(lp);
b.setText("bla");
b.setTextSize(16);
b.setOnClickListener(myListener);
then the application crashes. Without setLayoutParams, it runs fine, but my button is not sized properly.
How can I size my button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想从按钮获取 LayoutParams ,则必须将此按钮添加到视图中。或者只是创建新的 LayoutParams 并设置它。
You have to add this button to a view if you want to get
LayoutParams
from button. Or just create newLayoutParams
and set it.它返回 null,因为当您以编程方式创建小部件时,它没有布局参数! (直到您将其添加到视图中,然后它才会从 LayoutManager 接收默认值)
编辑:上面指的是代码的第 3 行,
如下设置它们:
Edit2:这里有一些 Readybake 替换代码。
假设您已经定义了 myListener,这应该可以工作。
It's returning null because when you programmatically create a widget, it has no layout params! (Until you add it to a view, then it receives defaults from the LayoutManager)
edit: above is referring to line 3 of your code
Set them like this:
Edit2: here's some readybake replacement code.
Assuming you have defined myListener, this should work.
因为我是通过 ListView::addFooterView 添加此按钮,所以我必须使用 ListView 类型。
使用它而不是仅仅使用 LayoutParams 可以解决我的崩溃问题。希望这对其他人有帮助。
Because I'm adding this button via ListView::addFooterView, it turns out I had to use the ListView type.
Using this instead of just LayoutParams resolves my crash. Hope this helps others.