Skip to content

Commit 240c8d9

Browse files
committed
Add
1 parent 87ee041 commit 240c8d9

File tree

83 files changed

+1526
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+1526
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="src" path="gen"/>
5+
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
6+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
7+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
8+
<classpathentry kind="output" path="bin/classes"/>
9+
</classpath>
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>MyAndroidTutorial</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.jdt.core.javabuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
</buildSpec>
29+
<natures>
30+
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
31+
<nature>org.eclipse.jdt.core.javanature</nature>
32+
</natures>
33+
</projectDescription>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
encoding/<project>=UTF-8
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="net.macdidi.myandroidtutorial"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="8"
9+
android:targetSdkVersion="19" />
10+
11+
<application
12+
android:allowBackup="true"
13+
android:icon="@drawable/ic_launcher"
14+
android:label="@string/app_name"
15+
android:theme="@style/AppTheme" >
16+
<activity
17+
android:name="net.macdidi.myandroidtutorial.MainActivity"
18+
android:label="@string/title_activity_main" >
19+
<intent-filter>
20+
<action android:name="android.intent.action.MAIN" />
21+
22+
<category android:name="android.intent.category.LAUNCHER" />
23+
</intent-filter>
24+
</activity>
25+
26+
<activity
27+
android:name="net.macdidi.myandroidtutorial.AboutActivity"
28+
android:theme="@android:style/Theme.Dialog" />
29+
30+
<activity
31+
android:name="net.macdidi.myandroidtutorial.ItemActivity">
32+
<intent-filter>
33+
<action android:name="net.macdidi.myandroidtutorial.ADD_ITEM"/>
34+
<action android:name="net.macdidi.myandroidtutorial.EDIT_ITEM"/>
35+
<category android:name="android.intent.category.DEFAULT" />
36+
</intent-filter>
37+
</activity>
38+
39+
<!-- 選擇顏色 -->
40+
<activity
41+
android:name="net.macdidi.myandroidtutorial.ColorActivity"
42+
android:theme="@android:style/Theme.Dialog"
43+
android:label="@string/title_activity_color">
44+
<!-- 加入設定元件啟動用的Action名稱 -->
45+
<intent-filter>
46+
<action android:name="net.macdidi.myandroidtutorial.CHOOSE_COLOR"/>
47+
<category android:name="android.intent.category.DEFAULT" />
48+
</intent-filter>
49+
</activity>
50+
51+
<!-- 設定元件 -->
52+
<activity
53+
android:name="net.macdidi.myandroidtutorial.PrefActivity" />
54+
55+
</application>
56+
57+
</manifest>
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="net.macdidi.myandroidtutorial"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="8"
9+
android:targetSdkVersion="19" />
10+
11+
<application
12+
android:allowBackup="true"
13+
android:icon="@drawable/ic_launcher"
14+
android:label="@string/app_name"
15+
android:theme="@style/AppTheme" >
16+
<activity
17+
android:name="net.macdidi.myandroidtutorial.MainActivity"
18+
android:label="@string/title_activity_main" >
19+
<intent-filter>
20+
<action android:name="android.intent.action.MAIN" />
21+
22+
<category android:name="android.intent.category.LAUNCHER" />
23+
</intent-filter>
24+
</activity>
25+
26+
<activity
27+
android:name="net.macdidi.myandroidtutorial.AboutActivity"
28+
android:theme="@android:style/Theme.Dialog" />
29+
30+
<activity
31+
android:name="net.macdidi.myandroidtutorial.ItemActivity">
32+
<intent-filter>
33+
<action android:name="net.macdidi.myandroidtutorial.ADD_ITEM"/>
34+
<action android:name="net.macdidi.myandroidtutorial.EDIT_ITEM"/>
35+
<category android:name="android.intent.category.DEFAULT" />
36+
</intent-filter>
37+
</activity>
38+
39+
<!-- 選擇顏色 -->
40+
<activity
41+
android:name="net.macdidi.myandroidtutorial.ColorActivity"
42+
android:theme="@android:style/Theme.Dialog"
43+
android:label="@string/title_activity_color">
44+
<!-- 加入設定元件啟動用的Action名稱 -->
45+
<intent-filter>
46+
<action android:name="net.macdidi.myandroidtutorial.CHOOSE_COLOR"/>
47+
<category android:name="android.intent.category.DEFAULT" />
48+
</intent-filter>
49+
</activity>
50+
51+
<!-- 設定元件 -->
52+
<activity
53+
android:name="net.macdidi.myandroidtutorial.PrefActivity" />
54+
55+
</application>
56+
57+
</manifest>
293 KB
Binary file not shown.
717 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)