初学安卓,今天写了一个小例子,可是eclipse控制台却提示
No Launcher activity found!
The launch will only sync the application package on the device!
但是设备我已经启动了呀,后来慢慢发现,在配置文件AndroidManifest.xml中,有这两句话:
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name="com.lovemu.textview.MainActivity"
android:label="@string/app_name">
<intent-filter>
<!--标识Activity为一个程序的开始-->
<actionandroid:name="android.intent.action.MAIN"/>
<!--决定应用程序是否显示在程序列表里-->
<categoryandroid:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
其中的<action android:name="android.intent.action.MAIN" />中的MAIN我以为是自己定义的布局管理器XML文件,被我改了,所以启动不了。
可是改过之后,还是出错,经排查,发现android:name="com.lovemu.textview.MainActivity"对应的类文件中,需要:
@Override
protectedvoid
onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.linearlayout);
}
其中的setContentView(R.layout.linearlayout);我没有加。
至此,程序能运行成功。
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有