RemoteView addView не работает - PullRequest
       27

RemoteView addView не работает

9 голосов
/ 02 ноября 2010

У меня есть виджет приложения, и я бы хотел добавить виды (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 Ответ

25 голосов
/ 20 ноября 2010

Методу addView () требуется идентификатор представления внутри макета, к которому вы хотите добавить это новое представление, а не сам макет.

Вместо этого:

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

Попробуйте это:

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

Предполагается, что ваш макет выглядит примерно так:

файл: 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>
...