我的发射器活动没有启动,任何机构都可以告诉我这是什么问题。
我也有服务。 任何帮助表示赞赏请帮助我被困住,不知道该怎么做。
以下是清单
的代码 Route::any('/perfumes', 'perfumescontroller@index');
在任何版本的android中都不会调用Launcher活动。
答案 0 :(得分:2)
试试这个: 我想删除这个:
<intent-filter>
<action android:name="Restart_Service"></action>
</intent-filter>
//需要修改
<meta-data
android:name="android.app.searchable" //it must contain package name and .searchable
android:resource="@xml/searchable">
</meta-data>
OR
<intent-filter>
<action android:name=".Restart_Service"></action> //add dot
</intent-filter>
答案 1 :(得分:0)
<?php
namespace site\blogBundle\Controller;
use AppBundle\Entity\User;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Session\Session;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\Extension\Core\Type\DateType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
class DefaultController extends Controller
{
public function indexAction(Request $request)
{
//$task = new User();
$user = $this->container->get('security.context')->getToken()->getUser();
$investor = $this->getDoctrine()->getRepository('AppBundle:User')->findOneBy(array('id' => $user->getId()));
$MatchP = $investor->getMatchP();
$form = $this->createFormBuilder(new User(), $investor)
->add('MatchP', TextType::class)
->add('save', SubmitType::class, array('label' => 'Create Task'))
->getForm();
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
if(!empty($form->get('MatchP')->getData())){
$investor->setMatchP($form->get('MatchP')->getData());
}
else{
$investor->setMatchP($MatchP);
}
$em = $this->getDoctrine()->getManager();
$em->persist($investor);
$em->flush();
$session = $this->getRequest()->getSession();
$session->getFlashBag()->add('message', 'Votre profil a été correctement modifié');
return $this->redirectToRoute('task_success');
}
return $this->render('siteblogBundle:Default:index.html.twig', array(
'form' => $form->createView(),
));
}
}
和application onCreate()
activity onCreate()
或MainActivity
,然后重试答案 2 :(得分:0)
如果启动器图标工作且从工作室启动不起作用,则禁用“即时运行”并尝试。