我正在尝试将开源的 todo 应用程序集成到我的主应用程序中。我已将 todo 应用程序作为库项目,并按照手册中的说明集成了 manifest.xml ......但我面临一个问题。
在我的库项目清单文件中,它以
<application android:name=".TodoApplication" android:icon="@drawable/todotxt_touch_icon" >
我如何将它集成到我的主清单文件中,因为我已经有一个应用程序名称......我已经集成了库项目的活动,但我无法集成这一行,因此它无法工作......
请找到库项目的 manifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.todotxt.todotxttouch"
android:versionName="0.7" android:versionCode="21"
xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Warning 'is lower than the project target API level' should be ok -->
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application android:name=".TodoApplication" android:icon="@drawable/todotxt_touch_icon"
android:label="@string/app_label" android:debuggable="true">
<uses-configuration></uses-configuration>
<supports-screens android:largeScreens="true"
android:normalScreens="true" android:smallScreens="true"
android:resizeable="true" android:anyDensity="true" />
<activity android:name=".LoginScreen" android:label="@string/app_label"
android:theme="@android:style/Theme.NoTitleBar"
android:configChanges="keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Filter" android:label="Filter"
android:theme="@android:style/Theme.NoTitleBar" />
<activity android:name=".Preferences" android:label="@string/set_preferences" />
<activity android:name=".AddTask" android:label="@string/addtask"
android:theme="@android:style/Theme.NoTitleBar"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity-alias android:name=".AddTaskShortcut"
android:targetActivity=".AddTask" android:label="@string/shortcut_addtask_name">
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity-alias>
<activity-alias android:name=".AddTaskShare"
android:targetActivity=".AddTask" android:label="@string/share_addtask_name">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
</activity-alias>
<activity android:name=".HelpActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" />
<activity android:name=".TodoTxtTouch" android:theme="@android:style/Theme.NoTitleBar"
android:configChanges="keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
<!-- Task list widget -->
<receiver android:name=".TodoWidgetProvider" android:label="@string/app_label">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<intent-filter>
<action android:name="com.todotxt.todotxttouch.APPWIDGET_UPDATE"/>
</intent-filter>
<meta-data android:name="android.appwidget.provider" android:resource="@xml/todo_widget_provider" />
</receiver>
</application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
</manifest>
我被卡住的主要部分是应用程序名称部分......我如何将库项目应用程序名称集成到我的主应用程序清单中,因为它已经有一个应用程序名称......所以我被困在那个部分并且它无法正常工作,因为它只会引发运行时错误......
我已经在我的主应用程序清单文件中集成了我的库项目的所有活动及其完整的包名。任何人都可以指导我哪里出错了......