Как обновлять представление (дочерний) в макете теперь время от времени дочерний клон.
// set table result
LinearLayout Layout_Tab = root.findViewById(R.id.Layout_Tab);
View child = getLayoutInflater().inflate(R.layout.table_wm, null);
if (child.getParent()!= null) {
Layout_Tab.removeView(child);
} else
Layout_Tab.addView(child);