RemoteView addView无法正常工作

时间:2010-11-02 13:20:45

标签: android android-widget remoteview android-remoteview

我有一个应用小部件,我想将观看次数(TextView等)添加到RemoteView,但它永远不会显示。
这是代码:

RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget_layout);
RemoteViews newView = new RemoteViews(context.getPackageName(), R.layout.widget_row_layout);
    newView.setTextViewText(R.id.textUser, "1234");
    views.addView(views.getLayoutId(), newView);
// Tell the AppWidgetManager to perform an update on the current App Widget
appWidgetManager.updateAppWidget(appWidgetId, views);

有什么想法吗?


这就是我最终要做的事情:

RemoteViews newView = new RemoteViews(context.getPackageName(), R.layout.widget_row_layout);
    newView.setTextViewText(R.id.textUser, "1234");
ComponentName thisWidget = new ComponentName(this,WidgetProvider.class);
AppWidgetManager manager = AppWidgetManager.getInstance(this);
    manager.updateAppWidget(thisWidget, newView);

1 个答案:

答案 0 :(得分:25)

addView()方法需要您要添加此新视图的布局内的视图的ID,而不是布局本身。

而不是:

views.addView(views.getLayoutId(), newView);

试试这个:

views.addView(R.id.view_container, newView);

假设你的布局看起来像这样:

file: layout / widget_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <LinearLayout
        android:id="@+id/view_container"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <!-- New views will be added here at runtime -->
    </LinearLayout>
</LinearLayout>