gpt4 book ai didi

android - 以编程方式在 scrollView 上设置边距

转载 作者:行者123 更新时间:2023-11-29 02:12:43 25 4
gpt4 key购买 nike

您好,我正在尝试使用此代码在 ScrollView 上设置边距,但没有任何反应。

    ScrollView sv = new ScrollView(this);
LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinearLayout.VERTICAL);


LayoutParams layoutParams = new ScrollView.LayoutParams(
ScrollView.LayoutParams.FILL_PARENT,
ScrollView.LayoutParams.WRAP_CONTENT);
// layoutParams.bottomMargin = 100;

layoutParams.setMargins(0, 0, 0, 100);

sv.setLayoutParams(layoutParams);

sv.addView(ll);

// Add a TableView to ScrollView...

// Display my view
this.setContentView(sv);

我想做的是在 ScrollView 下方添加一些按钮,以便您始终可以看到它们。

我是 Android 开发的新手,所以非常感谢任何建议。

/偶来

最佳答案

我认为 layoutParams.setMargins(0, 0, 0, 100);确实有效。但你不要以这种方式在底部添加按钮。查看以下链接

http://www.anddev.org/code-snippets-for-android-f33/relativelayout-scrollview-buttons-at-bottom-t8904.html

Two equal sized buttons at bottom of scrollview

关于android - 以编程方式在 scrollView 上设置边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6303623/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com