Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.


I have a widget which shows some information downloaded from the internet.

I know I can add a View to a RemoveViews by using XML layouts, but I have a difficulty doing this.

Here is my code:

        View changesTable = getChangesUI(mContext, values[0]);//This returns the created View
        LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View parent = inflater.inflate(R.layout.changes, null);
        LinearLayout root = (LinearLayout) parent.findViewById(R.id.scroll);
        if (root.getChildCount() > 0) {
            root.removeAllViews();
        }
        root.addView(changesTable);
        RemoteViews table = new RemoteViews(mContext.getPackageName(), R.layout.changes);
        remoteViews.addView(R.id.parent, table);//-->ERROR HAPPENS HERE
        appWidgetManager.updateAppWidget(widgetId, remoteViews);

Here is changes.xml:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/tabChanges"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<LinearLayout
    android:id="@+id/scroll"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
</LinearLayout>

</ScrollView>

I have two problems:

  1. In the row before the last, the widget shows "Prolem Loading Widget" on the screen. When I use a different layout it adds it with no problem (I also tried to comment out the inflate part, and still it shows the problem with this specific layout

  2. AFAIK, when I create the RemoteViews table object, It uses the written XML and not the layout I inflated. How can I make it use the inflated layout?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.