imageButton 在布局底部绘制

发布于 2024-12-02 00:23:23 字数 401 浏览 1 评论 0原文

我有在代码内创建的 ImageButton,

    // Create Button 
    ImageButton imageButton = new ImageButton(mContext);
    imageButton.setBackgroundResource(R.drawable.button);

    imageButton.setOnClickListener(this);
    LayoutParams myParams = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

    addContentView(imageButton, myParams);

我如何在布局的底部绘制它?

I have ImageButton which create inside the code,

    // Create Button 
    ImageButton imageButton = new ImageButton(mContext);
    imageButton.setBackgroundResource(R.drawable.button);

    imageButton.setOnClickListener(this);
    LayoutParams myParams = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

    addContentView(imageButton, myParams);

How can i draw it in the bottom of the layout ?

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

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

发布评论

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

评论(1

风追烟花雨 2024-12-09 00:23:23

尝试:

LinearLayout.LayoutParams lp= (LinearLayout.LayoutParams)myButton.getLayoutParams(); 
lp.layout_gravity=Gravity.BOTTOM; 
myButton.setLayoutParams(lp); 

Try:

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