I want to get the view or findViewById() from Context? Or from intent?
I\'m trying to reach a specific view in my broadcast receiver and the parameter of onReceive a
In your broadcast receiver you could access a view via inflation a root layout from XML resource and then find all your views from this root layout with findViewByid():
View view = View.inflate(context, R.layout.ROOT_LAYOUT, null);
Now you can access your views via 'view' and cast them to your view type:
myImage = (ImageView) view.findViewById(R.id.my_image);