Skip to content

Commit bce6da9

Browse files
committed
Add
1 parent a21b537 commit bce6da9

File tree

202 files changed

+4381
-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.

202 files changed

+4381
-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: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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+
<uses-permission
12+
android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
13+
<uses-permission
14+
android:name="android.permission.READ_EXTERNAL_STORAGE"/>
15+
16+
<application
17+
android:allowBackup="true"
18+
android:icon="@drawable/ic_launcher"
19+
android:label="@string/app_name"
20+
android:theme="@style/AppTheme" >
21+
<activity
22+
android:name="net.macdidi.myandroidtutorial.MainActivity"
23+
android:label="@string/title_activity_main" >
24+
<intent-filter>
25+
<action android:name="android.intent.action.MAIN" />
26+
27+
<category android:name="android.intent.category.LAUNCHER" />
28+
</intent-filter>
29+
</activity>
30+
31+
<activity
32+
android:name="net.macdidi.myandroidtutorial.AboutActivity"
33+
android:theme="@android:style/Theme.Dialog" />
34+
35+
<activity
36+
android:name="net.macdidi.myandroidtutorial.ItemActivity">
37+
<intent-filter>
38+
<action android:name="net.macdidi.myandroidtutorial.ADD_ITEM"/>
39+
<action android:name="net.macdidi.myandroidtutorial.EDIT_ITEM"/>
40+
<category android:name="android.intent.category.DEFAULT" />
41+
</intent-filter>
42+
</activity>
43+
44+
<!-- 選擇顏色 -->
45+
<activity
46+
android:name="net.macdidi.myandroidtutorial.ColorActivity"
47+
android:theme="@android:style/Theme.Dialog"
48+
android:label="@string/title_activity_color">
49+
<!-- 加入設定元件啟動用的Action名稱 -->
50+
<intent-filter>
51+
<action android:name="net.macdidi.myandroidtutorial.CHOOSE_COLOR"/>
52+
<category android:name="android.intent.category.DEFAULT" />
53+
</intent-filter>
54+
</activity>
55+
56+
<!-- 設定元件 -->
57+
<activity
58+
android:name="net.macdidi.myandroidtutorial.PrefActivity" />
59+
60+
</application>
61+
62+
</manifest>
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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+
<uses-permission
12+
android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
13+
<uses-permission
14+
android:name="android.permission.READ_EXTERNAL_STORAGE"/>
15+
16+
<application
17+
android:allowBackup="true"
18+
android:icon="@drawable/ic_launcher"
19+
android:label="@string/app_name"
20+
android:theme="@style/AppTheme" >
21+
<activity
22+
android:name="net.macdidi.myandroidtutorial.MainActivity"
23+
android:label="@string/title_activity_main" >
24+
<intent-filter>
25+
<action android:name="android.intent.action.MAIN" />
26+
27+
<category android:name="android.intent.category.LAUNCHER" />
28+
</intent-filter>
29+
</activity>
30+
31+
<activity
32+
android:name="net.macdidi.myandroidtutorial.AboutActivity"
33+
android:theme="@android:style/Theme.Dialog" />
34+
35+
<activity
36+
android:name="net.macdidi.myandroidtutorial.ItemActivity">
37+
<intent-filter>
38+
<action android:name="net.macdidi.myandroidtutorial.ADD_ITEM"/>
39+
<action android:name="net.macdidi.myandroidtutorial.EDIT_ITEM"/>
40+
<category android:name="android.intent.category.DEFAULT" />
41+
</intent-filter>
42+
</activity>
43+
44+
<!-- 選擇顏色 -->
45+
<activity
46+
android:name="net.macdidi.myandroidtutorial.ColorActivity"
47+
android:theme="@android:style/Theme.Dialog"
48+
android:label="@string/title_activity_color">
49+
<!-- 加入設定元件啟動用的Action名稱 -->
50+
<intent-filter>
51+
<action android:name="net.macdidi.myandroidtutorial.CHOOSE_COLOR"/>
52+
<category android:name="android.intent.category.DEFAULT" />
53+
</intent-filter>
54+
</activity>
55+
56+
<!-- 設定元件 -->
57+
<activity
58+
android:name="net.macdidi.myandroidtutorial.PrefActivity" />
59+
60+
</application>
61+
62+
</manifest>
295 KB
Binary file not shown.
723 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)