please how can I call intent From another Activity !!
public class IwannaStartIntent extends Activity{
private Context context;
.
.
public void startNewAcivity(){
Intent intent = new Intent(context,MainActivity.class);
context.startActivity(intent);
}