3

我有一个主屏幕小部件,具有线性布局。我正在尝试在运行时使用远程视图为背景设置 Alpha,但小部件未加载。

我正在使用这个:

remoteView.setFloat(R.id.widget_background, "setAlpha", (float)0.7);

以相同的方式设置背景颜色或文本颜色,有效。如何使用远程视图设置背景透明度?

4

5 回答 5

2

有一个使用十六进制背景颜色的简单解决方案。你有一种颜色,例如红色 -#ff0000

要将背景红色设置为您的应用小部件,您可以使用:

widget.setInt(R.id.widget_list, "setBackgroundColor", Color.parseColor("#ff0000"));

对于颜色透明度,只需在您的颜色前面添加多少颜色 - 您想要的透明度关系,例如:

对于 20% 颜色将是#20ff0000在此处输入图像描述

对于 85% 的颜色 #85ff0000,您将拥有: 在此处输入图像描述

于 2016-01-29T09:22:36.943 回答
1
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:background="@android:color/transparent">


    <ImageView
        android:id="@+id/widget_image"
        android:layout_width="110sp"
        android:layout_height="110sp"
        android:layout_gravity="center"
        android:src="@drawable/flashlight1" />
</LinearLayout>

只需将布局的背景设置为透明即可。添加以下代码。这对我有用。

android:background="@android:color/transparent"
于 2014-08-10T09:42:18.150 回答
1

我使用了以下解决方案:

float opacity = 0.3f;           //opacity = 0: fully transparent, opacity = 1: no transparancy
int backgroundColor = 0x000000; //background color (here black)
remoteView.setInt( R.id.loMain, "setBackgroundColor", (int)(opacity * 0xFF) << 24 | backgroundColor);

loMain是我的小部件的主要布局

如果小部件的主要布局使用具有圆角的形状背景(例如 android:background="@drawable/shape_transparent"),那么这里是一个更复杂的解决方案:

        float transparency = 0.5f;  //0...1
        long colorFilter = 0x01000000L * (long)(255f * transparency);   
        try {
            final Method[] declaredMethods = Class.forName("android.widget.RemoteViews").getDeclaredMethods();
            final int len = declaredMethods.length;
            if (len > 0) {
                for (int m=0; m<len; m++ ) {
                    final Method method = declaredMethods[m];
                    if (method.getName().equals("setDrawableParameters")) {
                        method.setAccessible(true);
                        method.invoke(remoteView, R.id.loMain, true, -1, (int)colorFilter, PorterDuff.Mode.DST_OUT, -1);
                        break;
                    }
                }
            }
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (InvocationTargetException e) {
            e.printStackTrace();
        } catch (IllegalAccessException e) {
            e.printStackTrace();
        } catch (IllegalArgumentException e) {
            e.printStackTrace();
        }

您可以使用变量alfacolorFilter来满足您的需求。

于 2015-01-29T04:50:35.967 回答
1

1.您可以使用 Style.xml 使背景透明,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <style name="Theme.Transparent" parent="android:Theme">
    <item name="android:windowIsTranslucent">true</item>
    <item name="android:windowBackground">@android:color/transparent</item>
    <item name="android:windowContentOverlay">@null</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowIsFloating">true</item>
    <item name="android:backgroundDimEnabled">false</item>
  </style>
</resources>

将此文件设置为小部件的主题。或 2.在 # 后输入 80,输入您的颜色代码,如下所示:#80000000 希望它有所帮助..您可以使用 #80FFFFFF 作为没有任何颜色的背景。我没有在代码中尝试过,但可能会有所帮助。

于 2013-06-19T10:00:47.537 回答
1

在 Android 上设置 imageview 的透明背景

上面的链接是此类背景颜色的最佳解决方案。

下面的黑色代码: -

<color name="black">#000000</color>

现在,如果您想使用不透明度,则可以使用以下代码:-

<color name="black">#99000000</color> 

下面是不透明代码:-

100% — 法郎

95%——F2

90%——E6

85% — D9

80%——抄送

75% — 高炉

70% — B3

65%——A6

60% — 99

55% — 8℃

50% — 80

45% — 73

40% — 66

35% — 59

30% — 4D

25% — 40

20% — 33

15% — 26

10% — 1A

5% — 0天

0% — 00

于 2017-03-23T18:05:29.523 回答