【发布时间】:2010-11-02 06:13:39
【问题描述】:
我是 Android 平台的新手,我正在开发一个应用程序,它的主要活动是 正在使用对话框主题。
我几乎按照我想要的方式设置了 ui,但渐变似乎对我不起作用。 我尝试了渐变标题栏、视图、布局、textView 等,但在每种情况下都不会显示渐变。 (到目前为止,我只在模拟器上测试过它)。
我的可绘制 xml 如下所示:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#00000000"
android:centerColor="#FFFFFFFF"
android:endColor="#00000000"
android:angle="90" />
</shape>
我使用以下方法将背景设置为几个元素,但它从未出现:
android:background="@drawable/gradient_bg"
我尝试了不同的颜色和角度等,但无济于事。
如果我执行以下操作,但我更喜欢在 xml 中执行此操作。
GradientDrawable grad = new GradientDrawable(
Orientation.TOP_BOTTOM,
new int[] {Color.RED, Color.YELLOW}
);
this.getWindow().setBackgroundDrawable(grad);
有人可以帮忙吗? 谢谢。
【问题讨论】: