1

是否可以在 AppWidgetProvider 中创建动态布局?我只找到了使用 XML 创建小部件的教程,但不可能以这种方式创建视图..

我想像这样在行中绘制图像:http: //imgur.com/7j18q 并添加一个水平滚动。是否可以 ?

问候 !

编辑:(这是我到目前为止所拥有的......但我仍然不知道如何添加这些图像)

@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager,
        int[] appWidgetIds) {
    // TODO Auto-generated method stub
    super.onUpdate(context, appWidgetManager, appWidgetIds);
    final int N = appWidgetIds.length;
    for(int i = 0; i<N; i++){
        int awID = appWidgetIds[i];
        RemoteViews v = new RemoteViews(context.getPackageName(), R.layout.about);
        try
        {
            j = 1;
            Set<User> users = LFMRestConnection.getFriendsNowListening(user, 1440);;
            for (User u : users) {
                album_pic = loadBitmap(u.getImageURL().getImageURL(ImageURL.Size.LARGE));
                resized_a_p = android.graphics.Bitmap.createScaledBitmap(album_pic, (50), (50), true);
            //URLS
                url_to_enter[j]=u.getLastTrack().getArtistName();
                track_to_enter[j]=u.getLastTrack().getTrackName();
            //profile picture
                user_pic = loadBitmap(u.getImageURL().getImageURL(ImageURL.Size.LARGE));
                resized_u_p = android.graphics.Bitmap.createScaledBitmap(user_pic, (25), (25), true);
                j++; 
            }
        }
        catch(Exception e)
        {
            //startActivity(i);
            System.out.println("widget error");     
        }
        appWidgetManager.updateAppWidget(awID, v);
    }
}
4

1 回答 1

1

在你的xml布局中创建一个Horizo​​ntalScrollView,在里面放一个水平的LinearLayout,并通过设置id属性给布局一个ID

android:id="@+id/imageScrollLayout"

然后,在您的活动的 onCreate 中,找到布局对象

LinearLayout imageScrollLayout = (LinearLayout)findViewById(R.id.imageScrollLayout); 

要动态地将新的 ImageViews 添加到布局中,请使用

ImageView newImageView=new ImageView();

//set the ImageView image with one of the following:
newImageView.setImageBitmap(bm);
newImageView.setImageDrawable(drawable);
newImageView.setImageResource(resId);

//add the new ImageView to your layout
imageScrollLayout.addView(newImageView);

ImageView 的所有 xml 设置都可以在代码中访问,只需在设置图像后设置它们。Google Android 文档非常适合查找所有相关方法。此外,如果您在 Activity 的 onCreate 方法之外的任何地方添加图像,请记住将 imageScrollLayout 设置为 Activity 中的字段,而不是在 onCreate 方法中的本地字段,以便您可以在任何地方访问它。

编辑:要在 AppWidgetProvider 中实现这一点,您需要覆盖 onUpdate 方法。每当系统请求更新小部件时,都会调用此方法。如果确实需要更改小部件的 RemoteViews,则需要创建一组新视图,并将它们附加到小部件使用

appWidgetManager.updateAppWidget(componentName, remoteViews)

其中 appWidgetManager 是提供给 onUpdate 方法的参数。在 onAppWidgetOptionsChanged() 方法中需要实现类似的过程。要提供 remoteViews 参数,请使用代码中的布局文件膨胀,以达到以下效果

LayoutInflater myInflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);  
final View myRootLayout = myInflater .inflate(R.layout.myLayout, null);

之后就可以正常使用了

myRootLayout.findViewById(R.id.myView);

找到您的布局并将 ImageViews 添加到其中。

毕竟,我怀疑Horizo​​ntalScrollView 不支持作为RemoteView,因此很难实现您想要的水平滚动。这可能是 Google 的设计决定,因为 AppWidget 中的水平滚动不能很好地与主屏幕之间的水平滚动配合使用。也许使用左右边缘按钮来显示新的图像页面?

于 2012-08-28T14:01:03.283 回答