码迷,mamicode.com
首页 > 移动开发 > 详细

The launch will only sync the application package on the device!

时间:2015-03-29 12:08:11      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

在开始学习Android的开发时,有时候可能刚写完一个布局文件,就急忙忙的运行程序,此时会毫不留情的在控制台报错:No Launcher activity found!

The launch will only sync the application package on the device!这是因为没有修改AndroidManifest.xml文件,程序没有找到入口,也就是没有将你的activity配置在AndroidManifest.xml中。

解决办法:在AndroidManifest.xml中加入你编写的主Activity,如我的是MainActivity

 <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <!-- 配置程序启动需要的入口  -->
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

 

The launch will only sync the application package on the device!

标签:

原文地址:http://www.cnblogs.com/yby-blogs/p/4375380.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!