yaun dai ma
This commit is contained in:
parent
c92b7d0285
commit
cc76e4c7cb
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
|
||||
<classpathentry kind="lib" path="lib/imapstore.jar"/>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="src" path="gen"/>
|
||||
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
|
||||
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
|
||||
<classpathentry kind="output" path="bin/classes"/>
|
||||
</classpath>
|
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>PlanBetter</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,4 @@
|
|||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
|
@ -0,0 +1,102 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.planbetter.activity" android:versionCode="1"
|
||||
android:versionName="1.0">
|
||||
<supports-screens android:smallScreens="true"
|
||||
android:normalScreens="true" android:largeScreens="true"
|
||||
android:resizeable="true" android:anyDensity="true" />
|
||||
<uses-permission android:name="android.permission.VIBRATE" />
|
||||
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
|
||||
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
<uses-sdk android:minSdkVersion="7"></uses-sdk>
|
||||
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
||||
<activity android:name=".TaskActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name=".GoalActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity android:name=".AboutActivity" android:theme="@android:style/Theme.Dialog" android:launchMode="singleInstance"
|
||||
android:label="@string/app_name" android:screenOrientation="portrait" />
|
||||
<activity android:name=".HelpActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity android:name=".HistoryActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity android:name=".SetupActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity android:name="HeartActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity android:name=".CurrentGoalActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity android:name=".PastGoalActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity android:name=".HistoryOnedayActivity" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar" android:label="@string/app_name">
|
||||
</activity>
|
||||
<activity android:name=".TaskAlertActivity" android:launchMode="singleInstance"
|
||||
android:screenOrientation="portrait" android:label="@string/app_name"
|
||||
android:theme="@android:style/Theme.Wallpaper.NoTitleBar">
|
||||
</activity>
|
||||
<activity android:name=".TaskNotifyActivity" android:theme="@android:style/Theme.NoTitleBar" android:launchMode="singleInstance"
|
||||
android:screenOrientation="portrait" android:label="@string/app_name">
|
||||
</activity>
|
||||
<service android:name="com.planbetter.service.PlanBetterInit">
|
||||
</service>
|
||||
<service android:name="com.planbetter.service.AlertService">
|
||||
<intent-filter>
|
||||
<action android:name="com.planbetter.activity.ALARM_ALERT" />
|
||||
</intent-filter>
|
||||
</service>
|
||||
<receiver android:name="com.planbetter.receiver.PlanBetterReceiver">
|
||||
<intent-filter>
|
||||
<action android:name="com.planbetter.activity.ALARM_ALERT" />
|
||||
<action android:name="com.planbetter.activity.INSERT_DATA" />
|
||||
<action android:name="android.intent.action.DATE_CHANGED"/>
|
||||
<action android:name="android.intent.action.TIME_SET" />
|
||||
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
||||
<action android:name="com.planbetter.activity.INSERT_DATA_AFTER_MODIFY" />
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
<receiver android:name="com.planbetter.receiver.AlarmReceiver">
|
||||
<intent-filter>
|
||||
<action android:name="com.planbetter.activity.ALARM_REGISTRATION_DETAIL" />
|
||||
<action android:name="com.planbetter.activity.ALARM_REGISTRATION_SIMPLE" />
|
||||
<action android:name="com.planbetter.activity.ALARM_CANCEL"/>
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
|
||||
<receiver android:name="com.planbetter.widget.TodayTaskWidget" android:label="@string/today_task_widget_name">
|
||||
<intent-filter>
|
||||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
||||
<action android:name="com.android.protips.NEXT_TIP" />
|
||||
<action android:name="com.android.protips.HEE_HEE" />
|
||||
</intent-filter>
|
||||
<meta-data android:name="android.appwidget.provider"
|
||||
android:resource="@xml/today_task_widget_build" />
|
||||
</receiver>
|
||||
|
||||
<receiver android:name="com.planbetter.widget.TomorrowTaskWidget" android:label="@string/tomorrow_task_widget_name">
|
||||
<intent-filter>
|
||||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
||||
</intent-filter>
|
||||
<meta-data android:name="android.appwidget.provider"
|
||||
android:resource="@xml/tomorrow_task_widget_build" />
|
||||
</receiver>
|
||||
<service android:name="com.planbetter.widget.TomorrowTaskWidgetService"></service>
|
||||
<service android:name="com.planbetter.mail.GMailService" ></service>
|
||||
</application>
|
||||
</manifest>
|
|
@ -0,0 +1,11 @@
|
|||
PlanBetter
|
||||
==========
|
||||
PlanBetter is a task management tool on Android 2.1.
|
||||
|
||||
Here is a brief introduction in Chinese.
|
||||
|
||||
PlanBetter(最佳计划)是一个专注于历史、今天和未来的时间管理软件,透过事先的规划作为一种提醒和指引,督促用户在规定的时间内把事情做好。设置人生目标、记录心路历程,鼓励用户珍惜每一天的时间去提升自我,实现自身价值。
|
||||
|
||||
|
||||
|
||||
Any information about this project is on the site http://www.cnblogs.com/blacksword/.
|
|
@ -0,0 +1,102 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.planbetter.activity" android:versionCode="1"
|
||||
android:versionName="1.0">
|
||||
<supports-screens android:smallScreens="true"
|
||||
android:normalScreens="true" android:largeScreens="true"
|
||||
android:resizeable="true" android:anyDensity="true" />
|
||||
<uses-permission android:name="android.permission.VIBRATE" />
|
||||
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
|
||||
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
<uses-sdk android:minSdkVersion="7"></uses-sdk>
|
||||
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
||||
<activity android:name=".TaskActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name=".GoalActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity android:name=".AboutActivity" android:theme="@android:style/Theme.Dialog" android:launchMode="singleInstance"
|
||||
android:label="@string/app_name" android:screenOrientation="portrait" />
|
||||
<activity android:name=".HelpActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity android:name=".HistoryActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity android:name=".SetupActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity android:name="HeartActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity android:name=".CurrentGoalActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity android:name=".PastGoalActivity" android:label="@string/app_name" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity android:name=".HistoryOnedayActivity" android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.NoTitleBar" android:label="@string/app_name">
|
||||
</activity>
|
||||
<activity android:name=".TaskAlertActivity" android:launchMode="singleInstance"
|
||||
android:screenOrientation="portrait" android:label="@string/app_name"
|
||||
android:theme="@android:style/Theme.Wallpaper.NoTitleBar">
|
||||
</activity>
|
||||
<activity android:name=".TaskNotifyActivity" android:theme="@android:style/Theme.NoTitleBar" android:launchMode="singleInstance"
|
||||
android:screenOrientation="portrait" android:label="@string/app_name">
|
||||
</activity>
|
||||
<service android:name="com.planbetter.service.PlanBetterInit">
|
||||
</service>
|
||||
<service android:name="com.planbetter.service.AlertService">
|
||||
<intent-filter>
|
||||
<action android:name="com.planbetter.activity.ALARM_ALERT" />
|
||||
</intent-filter>
|
||||
</service>
|
||||
<receiver android:name="com.planbetter.receiver.PlanBetterReceiver">
|
||||
<intent-filter>
|
||||
<action android:name="com.planbetter.activity.ALARM_ALERT" />
|
||||
<action android:name="com.planbetter.activity.INSERT_DATA" />
|
||||
<action android:name="android.intent.action.DATE_CHANGED"/>
|
||||
<action android:name="android.intent.action.TIME_SET" />
|
||||
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
||||
<action android:name="com.planbetter.activity.INSERT_DATA_AFTER_MODIFY" />
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
<receiver android:name="com.planbetter.receiver.AlarmReceiver">
|
||||
<intent-filter>
|
||||
<action android:name="com.planbetter.activity.ALARM_REGISTRATION_DETAIL" />
|
||||
<action android:name="com.planbetter.activity.ALARM_REGISTRATION_SIMPLE" />
|
||||
<action android:name="com.planbetter.activity.ALARM_CANCEL"/>
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
|
||||
<receiver android:name="com.planbetter.widget.TodayTaskWidget" android:label="@string/today_task_widget_name">
|
||||
<intent-filter>
|
||||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
||||
<action android:name="com.android.protips.NEXT_TIP" />
|
||||
<action android:name="com.android.protips.HEE_HEE" />
|
||||
</intent-filter>
|
||||
<meta-data android:name="android.appwidget.provider"
|
||||
android:resource="@xml/today_task_widget_build" />
|
||||
</receiver>
|
||||
|
||||
<receiver android:name="com.planbetter.widget.TomorrowTaskWidget" android:label="@string/tomorrow_task_widget_name">
|
||||
<intent-filter>
|
||||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
||||
</intent-filter>
|
||||
<meta-data android:name="android.appwidget.provider"
|
||||
android:resource="@xml/tomorrow_task_widget_build" />
|
||||
</receiver>
|
||||
<service android:name="com.planbetter.widget.TomorrowTaskWidgetService"></service>
|
||||
<service android:name="com.planbetter.mail.GMailService" ></service>
|
||||
</application>
|
||||
</manifest>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue