- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 drawable 文件夹中有一个名为 border.xml 的 xml 文件。在这个 xml 中我有
<!-- +++++++++++++++++++++ BORDER +++++++++++++++++++ -->
<item>
<shape android:shape="rectangle">
<solid
android:id="@+id/shape_border_color"
android:color="@color/black" />
<gradient
android:id="@+id/shapre_border_gradient"
android:startColor="@color/BurlyWood"
android:endColor="@color/Blue"
android:angle="270"
/>
<!-- ++++++++++++++++++++ ROUND CORNERS ++++++++++++++++++++++++++++ -->
<corners
android:id="@+id/shape_border_corners"
android:bottomRightRadius="7dp"
android:bottomLeftRadius="7dp"
android:topLeftRadius="7dp"
android:topRightRadius="7dp"
/>
</shape>
</item>
<!-- +++++++++++++++++++++++ BACKGROUND ++++++++++++++++++++++++++ -->
<item
android:left="5dp"
android:right="5dp"
android:top="5dp" >
<shape android:shape="rectangle">
<gradient
android:id="@+id/shape_background"
android:id="@+id/hr_design_background_gradient"
android:startColor="@color/DarkOrchid"
android:endColor="@color/LawnGreen"
android:angle="270"/>
</shape>
</item>
我在我的 main.xml 文件中使用上面的 xml 文件作为 LinearLayout
的背景
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:padding="0dp"
android:background="@drawable/border_o2">
在我的 Main.java Activity 中,我有兴趣更改边框的 开始和结束颜色
以及角的 background
和 Radius
例如,如果我使用的是 TextView,我知道如何更改某个 ID 的背景。但我不确定如何更改 Item/Shape/Gradiant 值。
谢谢
最佳答案
一种方法是定义第二个可绘制资源,称为 drawable/alternate_background.xml。在此文件中,您可以对替代颜色、半径值等进行编码。
然后您以编程方式加载备用资源。
linearLayout.setBackgroundResource(R.drawable.alternate_background);
FWIW,这种方法的一个优点是您的 View 仍然是外部化的。因此,您可以使用 Eclipse 布局编辑器来预览更改,而不是等到运行时才能看到更改的效果。
关于android - 以编程方式更改在另一个 xml 中用作背景的 border.xml 的 startColor?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15102573/
我有一个要在布局中使用的形状。我希望在我的 Activity 中以编程方式更改颜色。 有什么方法可以更改 Activity 中的“startColor”和“endColor”属性?
根据android文档,android:startColor可以将属性作为一个值: This may also be a reference to a resource (in the form "@
我在 drawable 文件夹中有一个名为 border.xml 的 xml 文件。在这个 xml 中我有
我正在尝试更改 Unity 2017 中 ParticleSystem 的“startColor”字段。 我尝试在 C# 中以两种不同的方式编写代码。 第一种方式是: ParticleSystem.M
我是一名优秀的程序员,十分优秀!