标签:android style color strong 问题 cti
Android开发遇到的小问题之小解;
@1@ 编译运行安卓程序时
eclipse里console里提示The launch will only sync the application package on the device
经查找是AndroidManifest.xml里的主activity里红色部分没加,,
<activity
android:label="@string/XXX"
android:name=".XXX">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
未完待续...
标签:android style color strong 问题 cti
原文地址:http://www.cnblogs.com/jadeboy/p/3834630.html