How to set margin of ImageView using code, not xml(如何使用代码而不是 xml 设置 ImageView 的边距)
问题描述
我想将未知数量的 ImageView
视图添加到我的布局中并带有边距.在 XML 中,我可以像这样使用 layout_margin
:
I want to add an unknown number of ImageView
views to my layout with margin. In XML, I can use layout_margin
like this:
<ImageView android:layout_margin="5dip" android:src="@drawable/image"/>
有ImageView.setPadding()
,但没有ImageView.setMargin()
.我认为它与 ImageView.setLayoutParams(LayoutParams)
类似,但不知道该输入什么.
There is ImageView.setPadding()
, but no ImageView.setMargin()
. I think it's along the lines of ImageView.setLayoutParams(LayoutParams)
, but not sure what to feed into that.
有人知道吗?
推荐答案
android.view.ViewGroup.MarginLayoutParams
有一个方法 setMargins(left, top, right, bottom)
.直接子类是:FrameLayout.LayoutParams
、LinearLayout.LayoutParams
和 RelativeLayout.LayoutParams
.
android.view.ViewGroup.MarginLayoutParams
has a method setMargins(left, top, right, bottom)
. Direct subclasses are: FrameLayout.LayoutParams
, LinearLayout.LayoutParams
and RelativeLayout.LayoutParams
.
使用例如线性布局
:
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
lp.setMargins(left, top, right, bottom);
imageView.setLayoutParams(lp);
MarginLayoutParams
这会以像素为单位设置边距.要扩展它,请使用
This sets the margins in pixels. To scale it use
context.getResources().getDisplayMetrics().density
DisplayMetrics
这篇关于如何使用代码而不是 xml 设置 ImageView 的边距的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用代码而不是 xml 设置 ImageView 的边距
基础教程推荐
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01