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:
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
AFAIK, when I create the
RemoteViewstable object, It uses the written XML and not the layout I inflated. How can I make it use the inflated layout?