private View inflateView(Context context, RemoteViews rv, ViewGroup parent){ // RemoteViews may be built by an application installed in another // user. So build a context that loads resources from that user but // still returns the current users userId so settings like data / time formats // are loaded without requiring cross user persmissions. final Context contextForResources = getContextForResources(context); Context inflationContext = new RemoteViewsContextWrapper(context, contextForResources);
// If mApplyThemeResId is not given, Theme.DeviceDefault will be used. if (mApplyThemeResId != 0) { inflationContext = new ContextThemeWrapper(inflationContext, mApplyThemeResId); } LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
// Clone inflater so we load resources from correct context and // we don't add a filter to the static version returned by getSystemService. inflater = inflater.cloneInContext(inflationContext); inflater.setFilter(this); View v = inflater.inflate(rv.getLayoutId(), parent, false); v.setTagInternal(R.id.widget_frame, rv.getLayoutId()); return v; }
通过getLayoutId()获取layoutId:
1 2 3
publicintgetLayoutId(){ return mLayoutId; }
在RemoteViews中的apply方法中有一个performApply方法,该方法源码如下:
1 2 3 4 5 6 7 8 9 10
privatevoidperformApply(View v, ViewGroup parent, OnClickHandler handler){ if (mActions != null) { handler = handler == null ? DEFAULT_ON_CLICK_HANDLER : handler; finalint count = mActions.size(); for (int i = 0; i < count; i++) { Action a = mActions.get(i); a.apply(v, parent, handler); } } }
v1.5.2