Tag: 填充

SVG填充颜色透明度/ alpha?

SVG填充颜色可以设置透明度或alpha级别吗? 我已经尝试将两个值添加到填充标记(将其从填充=“#044B94”更改为填充=“#044B9466”),但这不起作用。

视图的填充和边距之间的区别

View's Margin和Padding有什么区别?

Base64长度计算?

在阅读base64 维基 … 我想弄清楚公式是如何工作的: 给定一个长度为n的string,base64长度将是 它是: 4*Math.Ceiling(((double)s.Length/3))) 我已经知道base64的长度必须是%4==0才能让解码器知道原文的长度是多less。 一个序列的最大填充数可以是=或== 。 wiki:每个input字节的输出字节数约为4/3(开销33%) 题: 上面的信息如何与输出长度一致 ?

以编程方式在视图中添加填充

我正在推出Android v2.2应用程序。 我有一个片段 。 在我的片段类的onCreateView(…)callback中,我将一个布局膨胀到如下所示的片段: @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.login, null); return view; } 上面的膨胀的布局文件是(login.xml): <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Username" /> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Username" /> </LinearLayout> 我想设置一个paddingTop到上面的<LinearLayout>元素,我想在Java代码中做,而不是在XML中做。 如何在我的片段中设置paddingTop到<LinearLayout> Java类代码?

将现有Excel值的前导零/ 0添加到特定长度

关于如何防止在导入或导出Excel时引导零被剥离,有许多许多问题和质量答案。 但是,我已经有一个电子表格,其中的值被截断为数字,实际上,它们应该已经被作为string处理。 我需要清理数据并将前导零添加回来。 有一个字段应该是四个字符,并将string填充为四个字符。 然而: "23" should be "0023", "245" should be "0245", and "3829" should remain "3829" 问题:是否有Excel公式将这些0填充到这些值中,以便它们都是四个字符? 注意:这与旧的邮政编码问题类似,新英格兰地区的邮政编码得到他们的领先的零下降,你必须重新join他们。

使用一组素数按升序生成整数

我有一组素数,我只能使用这些素数因子按递增顺序生成整数。 例如,如果集合是p = {2,5},那么我的整数应该是1,2,4,5,8,10,16,20,25 … 有没有有效的algorithm来解决这个问题?

将零填充添加到string

如何添加“0”填充string,使我的string长度始终是4? 例 If input "1", 3 padding is added = 0001 If input "25", 2 padding is added = 0025 If input "301", 1 padding is added = 0301 If input "4501", 0 padding is added = 4501

添加空格/填充到UILabel

我有一个UILabel ,我想在顶部和底部添加空间。 在最小限度的高度我已经修改它: 编辑:要做到这一点,我用过: override func drawTextInRect(rect: CGRect) { var insets: UIEdgeInsets = UIEdgeInsets(top: 0.0, left: 10.0, bottom: 0.0, right: 10.0) super.drawTextInRect(UIEdgeInsetsInsetRect(rect, insets)) } 但是我要find一个不同的方法,因为如果我写两行以上的话,问题是一样的:

填充底部/顶部在flexbox布局

我有一个包含两个项目的flexbox布局 。 其中之一使用填充底部 : #flexBox { border: 1px solid red; width: 50%; margin: 0 auto; padding: 1em; display: flex; flex-direction: column; } #text { border: 1px solid green; padding: .5em; } #padding { margin: 1em 0; border: 1px solid blue; padding-bottom: 56.25%; /* intrinsic aspect ratio */ height: 0; } <div id='flexBox'> <div id='padding'></div> <div […]

使用堆栈进行洪水填充

我在Java中使用recursionFlood填充algorithm来填充图像的某些区域。 对于非常小的图像,它可以正常工作,但是当图像变大时,JVM会给我一个堆栈溢出错误。 这就是为什么我必须用自己的堆栈使用洪水填充来重新实现该方法的原因。 (我读过这是在这种情况下做到这一点的最好方法) 任何人都可以解释我如何编码? (如果你手边没有代码,那么algorithm的伪代码就可以) 我在互联网上阅读了很多,但是我还没有很好的理解。 编辑:我添加了我的recursion代码 public void floodFill(int x, int y, Color targetColor,Color replacementColor) { if (img.getRGB(x, y) != targetColor.getRGB()) return; img.setRGB(x, y, replacementColor.getRGB()); floodFill(x – 1, y, targetColor, replacementColor); floodFill(x + 1, y, targetColor, replacementColor); floodFill(x, y – 1, targetColor, replacementColor); floodFill(x, y + 1, targetColor, replacementColor); return; } 谢谢!