1

我想设置背景的不透明度,如果我使用普通布局,LinearLayout我发现这个解决方案可以正常工作,但是在android-widgets我们必须设置不同的布局的情况下,我编写了以下代码

public class AlphaLayout extends LinearLayout {

public AlphaLayout (Context context) {
    super(context);
    // TODO Auto-generated constructor stub
}

public AlphaLayout (Context context, AttributeSet attrs) {
    super(context, attrs);
    // TODO Auto-generated constructor stub
}

@Override
protected void onAnimationStart() {
    AlphaAnimation alphax = new AlphaAnimation(0.5F, 0.5F);
    alphax.setDuration(0);
    alphax.setFillAfter(true);
    this.startAnimation(alphax);
    super.onAnimationStart();
}

}

而我对应的小部件 xml 布局是

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/widget_margin" >

<com.exercise.HelloWidget.AlphaLayout 
    android:id="@+id/myWidgetLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:background="@drawable/appwidget_dark_bg"
    android:orientation="horizontal" >
    <TextView
        android:id="@+id/song_info"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:text="Hello"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textColor="@color/white" />

    <TextView
        android:id="@+id/timeWidget"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="10dp"
        android:text="03:30"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textColor="@color/white" />

    
   
</com.exercise.HelloWidget.AlphaLayout>

运行项目后当我将小部件添加到主屏幕时,它显示错误Problem loading widget

你能告诉我我做错了什么吗?您的帮助将不胜感激。

4

2 回答 2

1

Android 文档中所述:您不能扩展RemoteView. 所以,你不能使用你的AlphaLayout班级。

对于任何布局背景,您可以使用十种不同的可绘制对象。你希望你的图像是透明的。这(据我所知)不能提供我们所拥有的。

但是,这是一个好的开始:

  • 使用 LinearLayout 而不是 AlphaLayout。
  • 添加一个Shape Drawable作为其背景:android:background="@drawable/widget_background"
  • 然后,根据需要设置背景。这是一个建议:

    res/drawable/widget_background.xml

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/Corners">
        <gradient android:startColor="#CC111111" android:endColor="#CC7f7f7f" android:angle="45"/>
        <padding android:left="4dp" android:top="1dp" android:right="4dp" android:bottom="1dp" />
        <corners android:radius="4dp" />
        <stroke android:width="2dp" android:color="#FFAfAfAf"/>
    </shape>
    

我相信这是制作小部件布局的标准方法。祝你好运!

于 2012-07-26T22:19:28.043 回答
0

您不能在主屏幕上有自定义视图/小部件。

与典型视图相比,主屏幕小部件中使用的 RemoveViews 功能数量有限。

于 2012-07-26T16:19:39.050 回答