Skip to content

Commit d1a7e5f

Browse files
committed
updates
1 parent 0697d2f commit d1a7e5f

File tree

253 files changed

+5324
-630
lines changed

Some content is hidden

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

253 files changed

+5324
-630
lines changed

External Plug-in Libraries/.searchable

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>com.example.oop.drawing</name>
3+
<name>aaa.test</name>
44
<comment></comment>
55
<projects>
66
</projects>

aaa.test/AndroidManifest.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="aaaa.test"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk android:minSdkVersion="8" />
8+
<uses-permission android:name="android.permission.INTERNET"/>
9+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
10+
11+
<application
12+
android:icon="@drawable/ic_launcher"
13+
android:label="@string/app_name" >
14+
<activity
15+
android:name=".MainActivity"
16+
android:label="@string/app_name" >
17+
<intent-filter>
18+
<action android:name="android.intent.action.MAIN" />
19+
20+
<category android:name="android.intent.category.LAUNCHER" />
21+
</intent-filter>
22+
</activity>
23+
</application>
24+
25+
</manifest>

aaa.test/project.properties

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This file is automatically generated by Android Tools.
2+
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3+
#
4+
# This file must be checked in Version Control Systems.
5+
#
6+
# To customize properties used by the Ant build system use,
7+
# "ant.properties", and override values to adapt the script to your
8+
# project structure.
9+
10+
# Project target.
11+
target=android-8
File renamed without changes.
File renamed without changes.
File renamed without changes.

aaa.test/res/layout/main.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:layout_width="fill_parent"
4+
android:layout_height="fill_parent"
5+
android:orientation="vertical" >
6+
7+
<Button
8+
android:id="@+id/button1"
9+
android:layout_width="wrap_content"
10+
android:layout_height="wrap_content"
11+
android:text="Button"
12+
android:onClick="onClick"
13+
/>
14+
15+
</LinearLayout>

0 commit comments

Comments
 (0)