Skip to content

Commit 9f235be

Browse files
committed
Add
1 parent 4647d26 commit 9f235be

File tree

78 files changed

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

78 files changed

+1435
-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: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
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+
<!-- 關於應用程式 -->
27+
<!-- 因為使用對話框的樣式,所以不用設定標題 -->
28+
<activity
29+
android:name="net.macdidi.myandroidtutorial.AboutActivity"
30+
android:theme="@android:style/Theme.Dialog" />
31+
32+
<!-- 記事項目元件 -->
33+
<activity
34+
android:name="net.macdidi.myandroidtutorial.ItemActivity">
35+
<intent-filter>
36+
<!-- 新增用的名稱 -->
37+
<action android:name="net.macdidi.myandroidtutorial.ADD_ITEM"/>
38+
<!-- 修改用的名稱 -->
39+
<action android:name="net.macdidi.myandroidtutorial.EDIT_ITEM"/>
40+
<!-- 一定要加入,內容固定不變 -->
41+
<category android:name="android.intent.category.DEFAULT" />
42+
</intent-filter>
43+
</activity>
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+
50+
</application>
51+
52+
</manifest>
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
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+
<!-- 關於應用程式 -->
27+
<!-- 因為使用對話框的樣式,所以不用設定標題 -->
28+
<activity
29+
android:name="net.macdidi.myandroidtutorial.AboutActivity"
30+
android:theme="@android:style/Theme.Dialog" />
31+
32+
<!-- 記事項目元件 -->
33+
<activity
34+
android:name="net.macdidi.myandroidtutorial.ItemActivity">
35+
<intent-filter>
36+
<!-- 新增用的名稱 -->
37+
<action android:name="net.macdidi.myandroidtutorial.ADD_ITEM"/>
38+
<!-- 修改用的名稱 -->
39+
<action android:name="net.macdidi.myandroidtutorial.EDIT_ITEM"/>
40+
<!-- 一定要加入,內容固定不變 -->
41+
<category android:name="android.intent.category.DEFAULT" />
42+
</intent-filter>
43+
</activity>
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+
50+
</application>
51+
52+
</manifest>
291 KB
Binary file not shown.
715 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)